:root {
    --primary: #0a2e5c;
    --primary-dark: #071e3d;
    --primary-light: #1a4f8b;
    --secondary: #c8a45c;
    --secondary-light: #e0c77a;
    --accent: #b8860b;
    --text: #333;
    --text-light: #666;
    --bg: #f5f5f5;
    --white: #fff;
    --border: #e0e0e0;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ── Top Bar ── */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    padding: 6px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,.85); margin-left: 15px; }
.top-bar a:hover { color: var(--secondary); }

/* ── Header ── */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-area img { height: 65px; }
.site-logo { max-height: 70px; width: auto; border-radius: 4px; }
.logo-text h1 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}
.logo-text .en {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.header-contact {
    text-align: right;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}
.header-contact i { color: var(--secondary); margin-right: 5px; }

/* ── Navigation ── */
.main-nav {
    background: var(--primary);
}
.main-nav .container { position: relative; }
.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block;
    padding: 14px 22px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all .25s;
    border-bottom: 3px solid transparent;
}
.nav-list > li:hover > a,
.nav-list > li.active > a {
    background: var(--primary-light);
    border-bottom-color: var(--secondary);
    color: var(--secondary-light);
}
.nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,.12);
    border-top: 3px solid var(--secondary);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s;
    z-index: 999;
}
.nav-list > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.sub-menu li a:hover {
    background: var(--bg);
    color: var(--primary);
    padding-left: 25px;
}

/* ── Mobile Menu ── */
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; padding: 10px; }

/* ── Banner / Slider ── */
.hero-slider {
    position: relative;
    overflow: hidden;
    max-height: 500px;
}
.hero-slider .slide {
    display: none;
    position: relative;
}
.hero-slider .slide.active { display: block; }
.hero-slider .slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.hero-slider .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    padding: 40px 60px 30px;
    color: var(--white);
}
.hero-slider .slide-caption h2 {
    font-size: 28px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,.5);
}
.hero-slider .slide-caption p {
    font-size: 15px;
    opacity: .9;
}
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}
.slider-controls button {
    pointer-events: all;
    background: rgba(0,0,0,.4);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background .3s;
}
.slider-controls button:hover { background: var(--primary); }
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background .3s;
}
.slider-dots button.active { background: var(--secondary); }

/* ── Section Headings ── */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 28px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
}
.section-title .en-title {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ── Quick Links Bar ── */
.quick-links {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}
.quick-links .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.quick-link-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: var(--bg);
    transition: all .3s;
    cursor: pointer;
}
.quick-link-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(10,46,92,.2);
}
.quick-link-item i {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}
.quick-link-item h3 { font-size: 16px; margin-bottom: 5px; }
.quick-link-item:hover i { color: var(--secondary-light); }
.quick-link-item:hover h3 { color: var(--white); }
.quick-link-item p { font-size: 13px; color: var(--text-light); }
.quick-link-item:hover p { color: rgba(255,255,255,.8); }

/* ── News & Activity Cards ── */
.content-section { padding: 50px 0; }
.content-section:nth-child(even) { background: var(--white); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: all .3s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}
.news-card .card-img {
    height: 200px;
    overflow: hidden;
}
.news-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.news-card:hover .card-img img { transform: scale(1.08); }
.news-card .card-body { padding: 20px; }
.news-card .card-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.news-card .card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card .card-title a { color: var(--text); }
.news-card .card-title a:hover { color: var(--primary); }
.news-card .card-summary {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card .card-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}
.news-card .card-more:hover { color: var(--secondary); }

/* ── List Style News ── */
.news-list { list-style: none; }
.news-list li {
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-list li:last-child { border-bottom: none; }
.news-list .news-date {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
    margin-left: 15px;
}
.news-list .news-title a {
    font-size: 15px;
    color: var(--text);
    flex: 1;
}
.news-list .news-title a:hover { color: var(--primary); }
.news-list .badge-top {
    background: var(--danger);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 8px;
}

/* ── Sidebar ── */
.page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}
.sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-widget {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.sidebar-widget .widget-title {
    background: var(--primary);
    color: var(--white);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}
.sidebar-widget .widget-body { padding: 15px 20px; }
.sidebar-menu { list-style: none; }
.sidebar-menu li a {
    display: block;
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px dotted var(--border);
    transition: all .2s;
}
.sidebar-menu li a:hover,
.sidebar-menu li.active a {
    color: var(--primary);
    padding-left: 10px;
}

/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}
.page-header h2 { font-size: 32px; margin-bottom: 8px; }
.page-header .breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,.7);
}
.page-header .breadcrumb a { color: rgba(255,255,255,.7); }
.page-header .breadcrumb a:hover { color: var(--secondary); }

/* ── Article Detail ── */
.article-detail { background: var(--white); padding: 40px; border-radius: 8px; }
.article-detail .article-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.article-detail .article-meta span { margin-right: 20px; }
.article-detail h1 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
}
.article-detail .article-content {
    line-height: 1.8;
    font-size: 16px;
}
.article-detail .article-content p { margin-bottom: 15px; }
.article-detail .article-content img { border-radius: 5px; margin: 15px 0; }

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}
.video-link a:hover { background: #0d3a6f; }

/* ── About Section ── */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-intro .about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
}
.about-intro .about-text h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}
.about-intro .about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ── Stats Counter ── */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
}
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--white);
}
.stat-item .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
}
.stat-item .stat-label {
    font-size: 15px;
    margin-top: 5px;
    opacity: .9;
}

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i {
    font-size: 24px;
    color: var(--secondary);
    width: 40px;
    text-align: center;
}
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--text-light); }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10,46,92,.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all .3s;
    font-family: inherit;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-light); color: var(--white); }
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ── Footer ── */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.75);
    padding-top: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}
.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    transition: all .2s;
}
.footer-col ul li a:hover { color: var(--secondary); padding-left: 5px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ── Publication Card ── */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.pub-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    text-align: center;
    transition: all .3s;
}
.pub-card:hover { transform: translateY(-3px); box-shadow: 0 5px 20px rgba(0,0,0,.12); }
.pub-card .pub-cover {
    height: 260px;
    overflow: hidden;
}
.pub-card .pub-cover img { width: 100%; height: 100%; object-fit: cover; }
.pub-card .pub-info { padding: 20px; }
.pub-card .pub-info h4 { font-size: 16px; margin-bottom: 8px; color: var(--primary); }
.pub-card .pub-info .pub-date { font-size: 13px; color: var(--text-light); }

/* ── Heroes Section ── */
.heroes-section {
    background: #0a2e5c;
    padding: 60px 0;
}
.heroes-section .section-title h2 {
    color: #fff;
}
.heroes-section .section-title .en-title {
    color: rgba(255,255,255,.6);
}
.heroes-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hero-item {
    display: flex;
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    overflow: hidden;
}
.hero-images {
    width: 45%;
    min-height: 280px;
    position: relative;
}
.hero-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease;
}
.hero-slide.active {
    opacity: 1;
    position: relative;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
}
.hero-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
}
.hero-dot.active {
    background: #c8a45c;
    border-color: #c8a45c;
}
.hero-content {
    width: 55%;
    padding: 35px;
    color: #fff;
}
.hero-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #c8a45c;
}
.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin-bottom: 15px;
}
.hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
}
.hero-more {
    display: inline-block;
    background: #e76f51;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}
.hero-more:hover {
    background: #d65a3d;
    transform: translateY(-2px);
    color: #fff;
}

/* ── Featured Article Section ── */
.featured-article-section {
    background: #2c3e50;
    padding: 50px 0;
}
.featured-article {
    display: flex;
    gap: 30px;
}
.featured-image {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.featured-content {
    width: 55%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #c8a45c;
}
.featured-summary {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.8);
    margin-bottom: 20px;
}
.featured-more {
    display: inline-block;
    background: #e76f51;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    width: fit-content;
    transition: all .3s;
}
.featured-more:hover {
    background: #d65a3d;
    transform: translateY(-2px);
}

/* ── Group Members Section ── */
.group-members-section {
    background: var(--white);
    padding: 50px 0;
}
.group-members-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}
.group-members-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.member-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    transition: all .3s;
}
.member-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}
.member-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
}
.member-info {
    flex: 1;
}
.member-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}
.member-name a:hover {
    color: var(--secondary);
}
.member-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
.group-members-list {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}
.member-list-item {
    padding: 12px 15px;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
}
.member-list-item:last-of-type {
    border-bottom: none;
}
.member-list-item a {
    color: var(--text);
}
.member-list-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.btn-full {
    width: 100%;
    text-align: center;
}

/* ── Flash Messages ── */
.flash {
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ── Pagination ── */
.pagination-wrap { text-align: center; margin-top: 30px; }
.pagination {
    list-style: none;
    display: inline-flex;
    gap: 5px;
}
.pagination li a, .pagination li span {
    display: block;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
}
.pagination li.active a {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pagination li a:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* ── Table ── */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.data-table th {
    background: var(--primary);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
}
.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.data-table tr:hover td { background: #f8f9fa; }

/* ── Member Card ── */
.member-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.member-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: flex;
    gap: 20px;
    align-items: center;
}
.member-card .member-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}
.member-card .member-info h4 { font-size: 16px; color: var(--primary); margin-bottom: 5px; }
.member-card .member-info p { font-size: 13px; color: var(--text-light); }

/* ── Responsive ── */
@media (max-width: 992px) {
    .nav-list > li > a { padding: 12px 15px; font-size: 14px; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-links .container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .about-intro { grid-template-columns: 1fr; }
    .page-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .pub-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .group-members-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        box-shadow: 0 5px 15px rgba(0,0,0,.2);
    }
    .nav-list.open { display: flex; }
    .nav-list .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: rgba(0,0,0,.1);
    }
    .header-contact { display: none; }
    .logo-text h1 { font-size: 18px; }
    .hero-slider .slide img { height: 250px; }
    .hero-slider .slide-caption h2 { font-size: 20px; }
    .hero-slider .slide-caption { padding: 20px 25px 15px; }
    .news-grid { grid-template-columns: 1fr; }
    .quick-links .container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-bar .container { grid-template-columns: 1fr 1fr; }
    .page-header h2 { font-size: 24px; }
    .article-detail { padding: 20px; }
    .member-grid { grid-template-columns: 1fr; }
    .pub-grid { grid-template-columns: 1fr; }
}
