/* Advisory Board Hero */
.advisory-hero {
    /* background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%); */
    /*background: linear-gradient(45deg, rgba(0,0,0,.8),rgba(0,0,0,.5)), url('../images/international-board.jpg');*/
    background: linear-gradient(45deg, #800000, #800000);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    /* margin-bottom: 40px; */
    border-bottom: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.advisory-hero::before {
    content: "BOARD";
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-family: var(--serif);
    font-size: 100px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.advisory-hero-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.advisory-hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    /*background: var(--red);*/
    background: #dfdfdf;
}

.advisory-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 600px;
}

/* Advisory Board Content */
.advisory-content-section {
    padding: 30px 0 50px 0;
    background: var(--smoke);
}

.advisory-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.advisory-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

/* Board List */
.board-list {
    display: flex;
    flex-direction: column;
}

.board-item {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.board-item:last-child {
    border-bottom: none;
}

.board-name {
    width: 200px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
    padding-right: 20px;
}

.board-details {
    flex: 1;
}

.board-affiliation {
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.7;
    margin-bottom: 5px;
}

.board-location {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}

.board-location i {
    color: var(--red);
    margin-right: 5px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .advisory-card {
        padding: 25px;
    }

    .advisory-hero::before {
        font-size: 70px;
    }

    .board-item {
        flex-direction: column;
    }

    .board-name {
        width: 100%;
        margin-bottom: 8px;
        font-size: 17px;
    }

    .board-affiliation {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .advisory-card {
        padding: 20px;
    }

    .board-name {
        font-size: 16px;
    }
}