* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    color: #333;
    background: transparent;
    padding: 5px;
}

.container {
    max-width: 100%;
    max-height: 100%;
    margin: 0%;
    height: fit-content;
}

header {
    text-align: center;
    margin-bottom: 5px;
    padding: 5px 0;
}

h1 {
    font-size: 1.9rem;
    color: #00838f;
    margin-bottom: 8px;
    font-weight: 700;
}

.subtitle {
    font-size: 1rem;
    color: #80a5a9;
    font-weight: 400;
}

.board-section {
    background: transparent;
    padding: 0.3px 0;
    margin-bottom: 7px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e3134;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #748d91;
}

.editors-list {
  display: grid;                     /* Ganti dari flex ke grid */
  grid-template-columns: 1fr 1fr;    /* Buat 2 kolom dengan lebar sama (1fr 1fr) */
  gap: 20px;                         /* Perbesar jarak agar tidak terlalu rapat */
}

.editor-card {
    display: flex;
    align-items: center;
    background: rgba(203, 220, 221, 0.279);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease;
    border: 0px solid #45747a;
    backdrop-filter: blur(5px);
    margin-bottom: 10px;
    height: fit-content;
}

.editor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(70, 71, 71, 0.2);
}

.editor-photo {
    width: 150px;
    min-width: 150px;
    height: 150px;
    object-fit: cover;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    text-align: center;
    margin-left: 10px
}

.editor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.editor-photo img {
  border-radius: 9%;
    padding: 0px
}
.editor-info {
    flex: 1;
    padding: 10px;
}

.editor-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #026c76;
    margin-bottom: 10px;
    position: relative;
    top: 0px;
}

.editor-affiliation {
    font-size: 0.9rem;
    color: #226d76;
    margin-bottom: 10px;
    font-style: italic;


}

.editor-details {
    list-style: none;
}

.editor-details li {
    margin-bottom: 0px;
    display: flex;
    align-items: flex-start;
    font-size: 0.7rem;
    line-height: 1.4;
}

.editor-details li:last-child {
    margin-bottom: 0;
}

.editor-details li::before {
    content: "•";
    color: #194449;
    font-weight: bold;
    display: inline-block;
    width: 18px;
    font-size: 0,6rem;
    margin-right: 2px;
}

.detail-label {
    font-weight: 600;
    color: #00838f;
    margin-right: 4px;
}

.detail-value {
    color: #333;
}

.detail-value a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.detail-value a:hover {
    color: #00838f;
    text-decoration: underline;
}
.navbar-logo img {
    max-height: 150;
}

@media (max-width: 768px) {
   .editors-list {
    grid-template-columns: 1fr; /* Kembali menjadi 1 kolom di layar kecil */
  }
    .editor-card {
        flex-direction: column;
    }
    .editor-photo {
        width: 100px;
        height: 120px;
        min-width: auto;
        margin: 0 auto 12px auto;
    }
    
    .editor-info {
        padding: 12px;
        text-align: center;
    }
    
    .editor-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .editor-details li {
        justify-content: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.4rem;
        text-align: center;
        border-bottom: 2px solid #00bcd4;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .editor-photo {
        width: 90px;
        height: 110px;
    }
    
    .editor-info {
        padding: 10px;
    }
    
    .editor-name {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .board-section {
        padding: 12px 0;
        margin-bottom: 18px;
    }
    
    .editors-list {
        gap: 12px;
    }
}