/* ==========================================
   Advisory Groups / Working Groups
========================================== */

.ag-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */

.ag-page-header {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}

.ag-breadcrumb-wrap {
    background: #eeeeee;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.ag-title-wrap {
    padding: 24px 0 28px;
}

.ag-breadcrumb {
    font-size: 14px;
    color: #666;
}

.ag-breadcrumb .sep {
    margin: 0 7px;
    color: #999;
}

.ag-breadcrumb .current {
    color: #000;
    font-weight: 600;
}

.ag-page-title {
    font-size: 42px;
    font-weight: 400;
    color: #004b93;
    margin: 0;
    position: relative;
}

.ag-page-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #f5a400;
    margin-top: 10px;
}

/* Layout */

.ag-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

/* Sidebar */

.ag-sidebar {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 18px;
}

.ag-sidebar a {
    display: block;
    padding: 8px 0;
    color: #004b93;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}

.ag-sidebar a:hover,
.ag-sidebar a.active {
    color: #f58220;
    font-weight: 600;
}

/* Content */

.ag-content {
    background: #fff;
    padding: 20px;
}

.ag-section-title,
.ag-members h3,
.ag-assistant h3,
.ag-functions h3 {
    color: #004b93;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.ag-section-title::after,
.ag-members h3::after,
.ag-assistant h3::after,
.ag-functions h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: #f5a400;
}

/* Leadership */

.ag-leadership {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.ag-leader-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.ag-leader {
    width: 150px;
}

.ag-leader img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.ag-leader strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.ag-leader p {
    margin: 0;
    color: #444;
    font-size: 14px;
}

/* Members + Assistant */

.ag-members-row {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.ag-members ol,
.ag-assistant ol,
.ag-functions ol,
.ag-work-plan ol {
    margin: 0;
    padding-left: 25px;
}

.ag-members li,
.ag-assistant li,
.ag-functions li,
.ag-work-plan li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Functions */

.ag-functions {
    margin-bottom: 40px;
}

/* Work Plan */

.ag-work-plan {
    margin-top: 35px;
}

.ag-work-plan h3 {
    display: inline-block;
    color: #004b93;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.ag-work-plan h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 50px;
    height: 2px;
    background: #f5a400;
}

.ag-work-plan p,
.ag-work-plan li {
    line-height: 1.8;
}

/* Updated Date */

.ag-updated-date {
    text-align: right;
    margin-top: 40px;
    font-size: 15px;
    color: #444;
}

/* contact mail */

.ag-contact-info {
    margin-top: 15px;
    text-align: right;
    font-size: 15px;
    color: #333;
}

.ag-contact-info a {
    color: #004b93;
    text-decoration: none;
}

.ag-contact-info a:hover {
    text-decoration: underline;
}

/* Archive Cards */

.ag-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ag-card {
    min-height: 220px;
    background: #00549b;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
}

.ag-card:hover {
    background: #f7941d;
    color: #fff;
}

.ag-card-icon {
    font-size: 36px;
    margin-bottom: 25px;
    color: #f5a400;
}

.ag-card h3 {
    color: inherit;
    font-size: 16px;
    line-height: 1.4;
}

/* Responsive */

@media (max-width: 992px) {
    .ag-container,
    .ag-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ag-wrapper {
        grid-template-columns: 1fr;
    }

    .ag-sidebar {
        order: 2;
    }

    .ag-content {
        order: 1;
    }

    .ag-members-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ag-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ag-page-title {
        font-size: 30px;
    }

    .ag-section-title,
    .ag-members h3,
    .ag-assistant h3,
    .ag-functions h3,
    .ag-work-plan h3 {
        font-size: 20px;
    }

    .ag-content {
        padding: 15px;
    }

    .ag-card-grid {
        grid-template-columns: 1fr;
    }

    .ag-leader-grid {
        gap: 25px;
    }
}

/* ==========================================
   End
========================================== */