﻿
.organizing-section {
    padding: 50px 15px 70px;
}

.organizing-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
       Conference Header
       ========================================= */

.organizing-header {
    text-align: center;
    margin-bottom: 45px;
}

    .organizing-header .university-name {
        font-size: 17px;
        font-weight: 700;
        color: #7b0000;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .organizing-header .conference-label {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #777;
        margin-bottom: 12px;
    }

    .organizing-header h1 {
        margin: 0 auto 12px;
        max-width: 900px;
        font-size: 32px;
        line-height: 1.35;
        color: #333;
        font-weight: 700;
    }

    .organizing-header .conference-title {
        max-width: 850px;
        margin: 0 auto;
        color: #7b0000;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.5;
    }

    .organizing-header .department {
        margin-top: 12px;
        color: #666;
        font-size: 15px;
    }

.header-line {
    width: 65px;
    height: 3px;
    background: #7b0000;
    margin: 18px auto;
    border-radius: 10px;
}


/* =========================================
       Committee Grid
       ========================================= */

.committee-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}


/* =========================================
       Committee Card
       ========================================= */

.organizing-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .organizing-card:hover {
        transform: translateY(-4px);
        border-color: rgba(123, 0, 0, 0.25);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
    }


/* =========================================
       Committee Header
       ========================================= */

.committee-title {
    background: linear-gradient( 135deg, #7b0000, #930000 );
    color: #ffffff;
    padding: 18px 22px;
}

    .committee-title h2 {
        margin: 0;
        font-size: 19px;
        line-height: 1.45;
        font-weight: 700;
    }


/* =========================================
       Committee Body
       ========================================= */

.committee-body {
    padding: 20px 22px 22px;
}


/* =========================================
       Convener
       ========================================= */

.convener-box {
    background: #faf7f7;
    border-left: 4px solid #7b0000;
    padding: 12px 15px;
    margin-bottom: 18px;
    border-radius: 0 8px 8px 0;
}

.convener-label {
    display: block;
    color: #7b0000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.convener-name {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}


/* =========================================
       Member List
       ========================================= */

.member-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .member-list li {
        position: relative;
        padding: 8px 0 8px 22px;
        color: #555;
        font-size: 14px;
        line-height: 1.55;
        border-bottom: 1px solid #f0f0f0;
    }

        .member-list li:last-child {
            border-bottom: none;
        }

        .member-list li:before {
            content: "";
            position: absolute;
            left: 3px;
            top: 16px;
            width: 6px;
            height: 6px;
            background: #7b0000;
            border-radius: 50%;
        }


/* =========================================
       Committee Note
       ========================================= */

.committee-note {
    margin-top: 18px;
    padding: 13px 15px;
    background: #fff9f9;
    border: 1px solid #f0dddd;
    border-radius: 8px;
    color: #555;
    font-size: 13px;
    line-height: 1.65;
}

    .committee-note strong {
        color: #7b0000;
    }


/* =========================================
       Academic Program - Full Width
       ========================================= */

.committee-full {
    grid-column: 1 / -1;
}

.academic-program .committee-title {
    text-align: center;
}

.academic-program .committee-body {
    padding: 24px;
}

.academic-program .member-list {
    columns: 2;
    column-gap: 45px;
}

    .academic-program .member-list li {
        break-inside: avoid;
    }


/* =========================================
       Mobile
       ========================================= */

@media (max-width: 767px) {

    .organizing-section {
        padding: 30px 12px 45px;
    }

    .organizing-header {
        margin-bottom: 30px;
    }

        .organizing-header .university-name {
            font-size: 15px;
        }

        .organizing-header .conference-label {
            font-size: 10px;
            letter-spacing: 1.5px;
        }

        .organizing-header h1 {
            font-size: 26px;
            line-height: 1.4;
        }

        .organizing-header .conference-title {
            font-size: 17px;
        }

        .organizing-header .department {
            font-size: 13px;
        }


    /* One column on mobile */
    .committee-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .committee-full {
        grid-column: auto;
    }


    /* Committee Card */
    .organizing-card {
        border-radius: 13px;
    }

    .committee-title {
        padding: 15px 16px;
    }

        .committee-title h2 {
            font-size: 17px;
            line-height: 1.5;
        }

    .committee-body {
        padding: 17px 16px 18px;
    }


    /* Convener */
    .convener-box {
        padding: 10px 12px;
        margin-bottom: 14px;
    }

    .convener-label {
        font-size: 10px;
    }

    .convener-name {
        font-size: 14px;
    }


    /* Members */
    .member-list li {
        padding: 7px 0 7px 19px;
        font-size: 13px;
        line-height: 1.55;
    }

        .member-list li:before {
            left: 2px;
            top: 14px;
            width: 5px;
            height: 5px;
        }


    /* Academic Program */
    .academic-program .committee-body {
        padding: 17px 16px;
    }

    .academic-program .member-list {
        columns: 1;
    }


    /* Note */
    .committee-note {
        font-size: 12.5px;
        padding: 11px 12px;
    }
}


/* =========================================
       Small Mobile
       ========================================= */

@media (max-width: 480px) {

    .organizing-section {
        padding: 25px 8px 35px;
    }

    .organizing-header h1 {
        font-size: 23px;
    }

    .organizing-header .conference-title {
        font-size: 15px;
    }

    .committee-title h2 {
        font-size: 16px;
    }

    .committee-body {
        padding: 15px 13px 16px;
    }

    .member-list li {
        font-size: 12.5px;
    }
}
