﻿/********** Template CSS **********/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

h1,
h2,
h3,
.font-heading {
    /*font-family: "Emblema One", system-ui;
    font-weight: 400;
    font-style: normal;*/
}

h4,
h5,
h6,
.font-body {
    /*font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;*/
}

@media (min-width: 992px) {
    .display-1 {
        /*font-size: 7rem;*/
    }
}

.btn {
    font-family: "Emblema One", system-ui;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--bs-secondary);
    font-size: 17px;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.section-title {
    color: var(--bs-primary);
    font-weight: 400;
    /*text-transform: uppercase;*/
    letter-spacing: .5rem;
}

.animate-up-down {
    position: relative;
    animation: animateUpDown 1s ease infinite;
}

@keyframes animateUpDown { 
    0% { 
        top: 0px;
    }
    50% { 
        top: 10px;
    }
    100% { 
        top: 0px;
    } 
}

.animate-rotate {
    position: absolute;
    animation: animateRotate 8s linear infinite;
}

@keyframes animateRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.bg-hero {
    background: linear-gradient(rgba(34, 36, 41, .8), rgba(34, 36, 41, .8)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.menu .tab-content img {
    transition: .5s;
}

.menu .tab-content img:hover {
    opacity: .7;
}

.team-item img {
    transform: scale(1.2);
    transition: .5s;
}

.team-item:hover img {
    margin-top: -50px;
    margin-bottom: 50px;
}

.team-item .team-overlay {
    position: absolute;
    top: calc(100% - 100px);
    bottom: 100px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 36, 41, .9);
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    top: 0;
    opacity: 1;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--bs-primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.2);
}

.instagram img {
    transition: .5s;
}

.instagram img:hover {
    opacity: .9;
}

@media (min-width: 991.98px) {
    .credit {
        background: #111111;
    }
}

.ph {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #060D1A 0%, #0B1829 50%, #0E2240 100%);
}

.ph-img {
    position: absolute;
    inset: 0;
    background-image: url('~/img/mainimages/committie.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    will-change: transform;
}

.ph-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(91,33,182,.2) 0%, transparent 70%);
    opacity:,3;
}

.ph-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: clamp(80px,12vw,120px) 24px 60px;
}

    .ph-inner .s-tag {
        color: rgba(201,168,76,.9);
        background: rgba(201,168,76,.1);
        border: 1px solid rgba(201,168,76,.2);
    }

    .ph-inner .s-title {
        color: var(--white);
    }

.ph-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.78;
    margin-top: 16px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Concave SVG curve */
.ph-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

    .ph-curve svg {
        display: block;
        width: 100%;
        height: 80px;
    }

/* ══════════════════════════════════════════════
   OVERVIEW
══════════════════════════════════════════════ */
.overview-sec {
    background: transparent;
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}

.overview-inner {
    max-width: 960px;
    margin: 0 auto;
}

.overview-text {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.95;
}

    .overview-text p {
        margin-bottom: 20px;
    }

        .overview-text p:last-child {
            margin-bottom: 0;
        }

    .overview-text strong {
        color: var(--dark);
        font-weight: 600;
    }

/* ══════════════════════════════════════════════
   OBJECTIVES
══════════════════════════════════════════════ */
.obj-sec {
    background: var(--alt);
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}

.obj-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.obj-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.obj-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 26px;
    box-shadow: var(--card-sh);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

    .obj-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--primary), var(--gold));
        opacity: 0;
        transition: opacity .35s;
    }

    .obj-item:hover {
        transform: translateX(6px);
        box-shadow: var(--card-sh-h);
    }

        .obj-item:hover::before {
            opacity: 1;
        }

.obj-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .5px;
}

.obj-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.obj-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════
   VENUE
══════════════════════════════════════════════ */
.venue-sec {
    background: transparent;
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}

.venue-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.venue-facts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.venue-fact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--alt);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

    .venue-fact:hover {
        border-color: rgba(91,33,182,.2);
        background: rgba(91,33,182,.03);
        transform: translateX(4px);
    }

.venue-fact-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 3px;
}

.vf-val {
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark);
}

.venue-img {
    border-radius: 24px;
    overflow: hidden;
    height: 440px;
    box-shadow: 0 12px 56px rgba(11,24,41,.1);
}

    .venue-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ══════════════════════════════════════════════
   PARTICIPATION
══════════════════════════════════════════════ */
.part-sec {
    background: var(--alt);
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}

.part-inner {
    max-width: 900px;
    margin: 0 auto;
}

.part-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.part-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--card-sh);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

    .part-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s;
    }

    .part-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--card-sh-h);
    }

        .part-card:hover::after {
            transform: scaleX(1);
        }

.part-icon {
    width: 200px;
    /*height: 200px;*/
    border-radius: 14px;
    /*background: linear-gradient(135deg, var(--primary), var(--primary-d));*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.part-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
        margin-top: 50px;
}

.part-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:900px) {
    .venue-inner {
        grid-template-columns: 1fr;
    }

    .venue-img {
        height: 280px;
    }
}

@media(max-width:768px) {
    .obj-grid, .part-grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════ */
.ph {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #060D1A 0%, #0B1829 50%, #14093A 100%);
}

.ph-img {
    position: absolute;
    inset: 0;
    background-image: url('~/img/mainimages/ZujLaw.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.ph-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 50%, rgba(201,168,76,.12) 0%, transparent 65%), radial-gradient(ellipse at 70% 30%, rgba(91,33,182,.18) 0%, transparent 60%);
    opacity:,3;
}

.ph-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: clamp(80px,12vw,120px) 24px 60px;
}

    .ph-inner .s-tag {
        color: rgba(201,168,76,.9);
        background: rgba(201,168,76,.1);
        border: 1px solid rgba(201,168,76,.2);
    }

    .ph-inner .s-title {
        color: var(--white);
    }

.ph-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-top: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.ph-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

    .ph-curve svg {
        display: block;
        width: 100%;
        height: 80px;
    }

/* ══════════════════════════════════════════════
   OBJECTIVES LIST
══════════════════════════════════════════════ */
.obj-page-sec {
    background: transparent;
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}

.obj-page-inner {
    max-width: 960px;
    margin: 0 auto;
}

.obj-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.obj-big-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: var(--card-sh);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

    .obj-big-item::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
        transition: width .4s cubic-bezier(.23,1,.32,1);
    }

    .obj-big-item:hover {
        transform: translateX(8px);
        box-shadow: var(--card-sh-h);
        border-color: rgba(91,33,182,.15);
    }

        .obj-big-item:hover::after {
            width: 4px;
        }

.obj-big-num {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(91,33,182,.25);
    transition: box-shadow .35s;
}

.obj-big-item:hover .obj-big-num {
    box-shadow: 0 8px 28px rgba(91,33,182,.4);
}

.obj-big-content {
}

.obj-big-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.obj-big-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ══════════════════════════════════════════════
   SUMMARY STATS
══════════════════════════════════════════════ */
.obj-stats-sec {
    background: var(--alt);
    padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
}

.obj-stats-inner {
    max-width: 900px;
    margin: 0 auto;
}

.obj-stats-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.obj-stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--card-sh);
    transition: all var(--transition);
}

    .obj-stat-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--card-sh-h);
    }

.obj-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}

    .obj-stat-num span {
        color: var(--primary);
    }

.obj-stat-label {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.obj-cta {
    background: transparent;
    padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
}

.obj-cta-inner {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0B1829, #1A0B40);
    border-radius: 24px;
    padding: clamp(2.5rem,5vw,4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(91,33,182,.25);
    box-shadow: 0 24px 64px rgba(11,24,41,.15);
}

    .obj-cta-inner::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
        pointer-events: none;
    }

.obj-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem,3.5vw,2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
}

    .obj-cta-title em {
        font-style: italic;
        background: linear-gradient(135deg, var(--primary-l), var(--gold-l));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.obj-cta-sub {
    font-size: .97rem;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.obj-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:768px) {
    .obj-big-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .obj-stats-grid {
        grid-template-columns: 1fr;
    }

    .obj-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}


/* ══════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════ */
.ph {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #060D1A 0%, #0B1829 50%, #0E2240 100%);
}

.ph-img {
    position: absolute;
    inset: 0;
    background-image: url('~/img/speakers/keynote.jpg');
    background-size: cover;
    background-position: center 75%;
    opacity: .3;
}

.ph-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(91,33,182,.22) 0%, transparent 65%);
    opacity:,3;
}

.ph-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: clamp(80px,12vw,120px) 24px 60px;
}

    .ph-inner .s-tag {
        color: rgba(201,168,76,.9);
        background: rgba(201,168,76,.1);
        border: 1px solid rgba(201,168,76,.2);
    }

    .ph-inner .s-title {
        color: var(--white);
    }

.ph-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-top: 16px;
}

.ph-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

    .ph-curve svg {
        display: block;
        width: 100%;
        height: 80px;
    }

/* ══════════════════════════════════════════════
   COMMITTEE SECTIONS
══════════════════════════════════════════════ */
.comm-sec {
    background: transparent;
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}

.comm-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Category label */
.comm-cat-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    margin-top: 56px;
}

    .comm-cat-label:first-of-type {
        margin-top: 0;
    }

.comm-cat-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.comm-cat-text {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    white-space: nowrap;
}

/* Featured chair card */
.chair-card {
    background: linear-gradient(135deg, #0B1829 0%, #1A0B40 100%);
    border: 1px solid rgba(91,33,182,.25);
    border-radius: 24px;
    padding: 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 16px 56px rgba(11,24,41,.15);
    margin-bottom: 48px;
    transition: all var(--transition);
}

    .chair-card:hover {
        border-color: rgba(201,168,76,.3);
        box-shadow: 0 24px 72px rgba(11,24,41,.2);
    }

.chair-avatar-wrap {
    position: relative;
}

.chair-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91,33,182,.3), rgba(201,168,76,.2));
    border: 2px solid rgba(201,168,76,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-l);
}

.chair-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--dark);
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 50px;
}

.chair-info-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
}

.chair-info-role {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 10px;
}

.chair-info-affil {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 16px;
}

.chair-info-bio {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}

/* Committee member grid */
.comm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
    gap: 18px;
}

.comm-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--card-sh);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

    .comm-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(91,33,182,.03), rgba(201,168,76,.03));
        opacity: 0;
        transition: opacity .35s;
    }

    .comm-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: var(--card-sh-h);
    }

        .comm-card:hover::before {
            opacity: 1;
        }

.comm-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    position: relative;
    border: 2px solid rgba(91,33,182,.15);
    transition: border-color .3s;
}

.comm-card:hover .comm-avatar {
    border-color: rgba(201,168,76,.4);
}

.comm-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.comm-role {
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 6px;
}

.comm-affil {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.45;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width:768px) {
    .chair-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chair-avatar-wrap {
        margin: 0 auto;
    }

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

@media(max-width:480px) {
    .comm-grid {
        grid-template-columns: 1fr;
    }
}