.editorial-board-container {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333333;
}

.editorial-board-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .editorial-board-section {
        grid-template-columns: 1fr;
    }
}

.editorial-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-top: 4px solid #0B6684;
    border-bottom: 4px solid #8C6B0D;
    border-radius: 2px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.editorial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.card-content {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.6;
    color: #444444;
}

.editorial-card strong {
    font-size: 1.6rem;
    font-weight: bold;
    color: #000000;
}

.editorial-card a {
    color: #0B6684;
    text-decoration: none;
    font-weight: bold;
}

.editorial-card a:hover {
    text-decoration: underline;
    color: #8C6B0D;
}

.section-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #0B6684;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #0B6684, #8C6B0D) 1;
}

.subsection-heading {
    font-size: 1.4rem;
    color: #000000;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: bold;
}

.card-divider {
    display: block;
    width: 100%;
    border-top: 1px solid #eeeeee;
}

.card-divider:first-of-type {
    margin: 8px 0 12px 0;
}

.card-divider:nth-of-type(2) {
    margin: 12px 0 6px 0;
}


/* Editorial card icon row */
.card-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.card-icons a {
    font-weight: normal;
}

.card-icons svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    stroke: #555;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.card-icons img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.card-icons a:hover img {
    opacity: 1;
}
