:root {

    --primary-blue: #0d4c73; 
    --primary-yellow: #f47c20; 
    --accent-yellow-light: #fef3c7;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.025);
    --shadow-hover: 0 20px 25px -5px rgba(10, 25, 47, 0.1), 0 10px 10px -5px rgba(10, 25, 47, 0.04);
}

body {
    font-family: 'Outfit', sans-serif;
       background-color: #888aaf12;
}

.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }

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

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-main);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title span {
    color: var(--primary-yellow);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.testimonials-grid, .profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* -------------------------------------
   Testimonial Block (t1c)
--------------------------------------- */
.t1c-content {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.t1c-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-yellow);
}

.t1c-text {
    font-size: 1.05rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 0.5rem;
    flex-grow: 1;
    position: relative;
}

.t1c-text.cl {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.t1c-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.t1c-btn {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0;
    transition: color 0.2s;
}

.t1c-btn:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.t1c-text::before {
    content: '"';
    color: var(--primary-yellow);
    font-size: 3rem;
    font-family: serif;
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.2;
    line-height: 1;
}

.t1c-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.t1c-person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t1c-av {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
}

.t1c-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
}

.t1c-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.t1c-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.t1c-stars {
    display: flex;
    gap: 2px;
}

.star-dot {
    width: 14px;
    height: 14px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sd-fill { background-color: var(--primary-yellow); }
.sd-empty { background-color: #cbd5e1; }

.t1c-pills {
    display: flex;
    gap: 0.5rem;
}

.pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
}

.pill.pa {
    background-color: var(--accent-yellow-light);
    color: var(--primary-yellow);
}

.pill.pl {
    background-color: #e0f2fe;
    color: #0369a1;
}


/* -------------------------------------
   Committee Member Block (t2c)
--------------------------------------- */
.t2c {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

.t2c:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.t2c-top {
    position: relative;
    height: 220px;
}

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

.t2c-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(10, 25, 47, 0.3);
}

.t2c-body {
    padding: 2rem;
}

.t2c-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.t2c-divider {
    height: 2px;
    width: 40px;
    background: var(--primary-yellow);
    margin: 1rem 0;
}

.t2c-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.t2c-row i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}


/* -------------------------------------
   Past Speaker Block (t3c)
--------------------------------------- */
.t3c {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
    position: relative;
}

.t3c:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-yellow);
}

.t3c-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.t3c-edition-badge {
    display: inline-block;
    background: var(--accent-yellow-light);
    color: var(--primary-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.t3c-avatar-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.t3c-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
    padding: 3px;
}

.t3c-role-chip {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 600;
}

.t3c-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.t3c-jobtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.t3c-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.t3c-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.t3c-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.t3c-row i {
    color: var(--primary-yellow);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-yellow-light);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .t1c-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .t1c-right {
        align-items: flex-start;
    }
}