         body {
            background-color: var(--white);
            color: var(--charcoal);
            line-height: 1.6;
        }
        
        .team-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1rem;
            display: flex;
            gap: 2rem;
        }
        
        header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--black);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        /* h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }
         */
        .team-cards {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            /* transition: all 0.3s ease; */
        }
        
        .team-cards.compact {
            flex: 0 0 40%;
        }
        
        .team-member-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .team-member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .team-member-card.active {
            border: 2px solid var(--gold);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .member-image {
            height: 200px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            object-position: top;
        }
        
        .team-member-card:hover .member-image img {
            /* transform: scale(1.05); */
        }
        
        .card-info {
            padding: 1rem;
            text-align: center;
        }
        
        /* .member-name {
            font-size: 1.2rem;
            color: var(--black);
            margin-bottom: 0.25rem;
        }mm÷ */
        
        .member-position {
            color: var(--gold);
            font-size: var(--fs-8);
  font-weight: var(--fw-400);
  line-height: 1;
        }
        
        .member-detail-panel {
            flex: 0 0 55%;
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-height: 80vh;
            overflow-y: auto;
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .member-detail-panel.active {
            display: block;
        }
        
        .detail-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .detail-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 2rem;
            flex-shrink: 0;
            /* border: 3px solid var(--gold); */
        }
        
        .detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }
        
        .detail-title h2 {
            font-size: 1.8rem;
            color: var(--black);
            margin-bottom: 0.5rem;
        }
        
        .detail-title p {
            font-size: 1.1rem;
            color: var(--gold);
            font-weight: 600;
        }
        
        .member-bio {
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        .member-achievements {
            margin-top: 1.5rem;
        }
        
        .achievements-title {
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--black);
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }
        
        /* .achievements-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold);
        } */
        
        .achievements-list {
            list-style-type: none;
        }
        
        .achievements-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        /* .achievements-list li::before {
            content: '★';
            position: absolute;
            left: 0;
            color: var(--gold);
        } */
        
        .close-btn {
            display: none;
            background: var(--black);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 1rem;
            float: right;
            transition: background 0.3s ease;
        }
        
        .close-btn:hover {
            background: #003d7a;
        }
        
        footer {
            text-align: center;
            margin-top: 3rem;
            padding: 1rem;
            color: #666;
            font-size: 0.9rem;
            clear: both;
        }
        
        @media (max-width: 992px) {
            .team-container {
                flex-direction: column;
            }
            
            .team-cards {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .team-cards.compact {
                flex: 1;
            }
            
            .member-detail-panel {
                flex: 1;
                margin-top: 2rem;
                max-height: none;
            }
            
            .close-btn {
                display: inline-block;
            }
        }
        
        @media (max-width: 768px) {
            .detail-header {
                flex-direction: column;
                text-align: center;
            }
            
            .detail-image {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .team-cards {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
