
        .ctm-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .ctm-member-card {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .ctm-member-card:hover {
            transform: translateY(-5px);
        }
        .ctm-member-card img {
            width: 175px;
            height: 175px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
        }
        .ctm-member-card h3 {
            margin: 0 0 5px 0;
            font-size: 1.2em;
        }
        .ctm-position {
            color: #666;
            margin: 0;
            font-style: italic;
        }
        .ctm-bio-panel {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 90%;
            max-width: 700px;
            height: 80vh;
            max-height: 600px;
            background: white;
            z-index: 1001;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border-radius: 8px;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .ctm-bio-panel.active {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        .ctm-bio-content {
            padding: 30px;
            height: 100%;
            overflow-y: auto;
            position: relative;
        }
        .ctm-bio-content h2, .ctm-bio-content .ctm-position {
             text-align: left;
        }
         .ctm-bio-content img {
            float: right;
            margin-left: 20px;
            margin-bottom: 10px;
            width: 175px;
            height: 175px;
            border-radius: 50%;
            object-fit: cover;
        }
        .ctm-bio-text {
            text-align: left;
        }
        .ctm-close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #333;
            background: none;
            border: none;
            cursor: pointer;
        }
        .ctm-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            display: none;
        }
        .ctm-overlay.active {
            display: block;
        }
        @media (max-width: 768px) {
            .ctm-bio-content img {
                float: none;
                margin: 0 auto 20px;
                display: block;
            }
        }
        