/**
 * Testimonials Showcase Component - People-First Design
 * Shows founder images prominently, reveals testimonial on hover
 */

/* ============================================
   Base Section Styles
   ============================================ */
.testimonials-showcase {
    position: relative;
    height: auto;
    padding: 4rem 0;
    overflow: visible;
    display: flex;
    align-items: center;
}

/* Dark Theme (Default) */
.testimonials-showcase.tsc-dark {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    color: #ffffff;
}

/* Light Theme */
.testimonials-showcase.tsc-light {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
}

/* Background Effects */
.tsc-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.tsc-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.tsc-dark .tsc-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--tsc-accent, #2563eb);
    top: -300px;
    right: -200px;
    opacity: 0.12;
}

.tsc-dark .tsc-orb-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -200px;
    left: -100px;
    opacity: 0.08;
}

.tsc-light .tsc-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--tsc-accent, #2563eb);
    top: -300px;
    right: -200px;
    opacity: 0.06;
}

.tsc-light .tsc-orb-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -200px;
    left: -100px;
    opacity: 0.04;
}

/* ============================================
   Header - Left aligned, thin
   ============================================ */
.tsc-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    /* Prevent hover effects from affecting header position */
    transform: translateZ(0);
    will-change: auto;
}

.tsc-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.tsc-dark .tsc-title {
    color: #ffffff;
}

.tsc-light .tsc-title {
    color: #0f172a;
}

.tsc-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 700px;
    margin: 0;
}

.tsc-dark .tsc-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.tsc-light .tsc-subtitle {
    color: #64748b;
}

/* ============================================
   Scroll Container Wrapper
   ============================================ */
.tsc-scroll-wrapper {
    position: relative;
    z-index: 1;
}

.tsc-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tsc-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Pause auto-scroll on hover */
.tsc-scroll-container.tsc-paused {
    animation-play-state: paused !important;
}

/* ============================================
   People Grid (now horizontal scroll)
   ============================================ */
.tsc-people-grid {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding: 0 0 2rem 0;
}

/* ============================================
   Person Card - People-First Design (3:4 aspect ratio)
   ============================================ */
.tsc-person-card {
    position: relative;
    width: 280px;
    height: 373px; /* 3:4 ratio */
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.tsc-dark .tsc-person-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tsc-light .tsc-person-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Hover: Only change background/border, no size/position changes */
.tsc-person-card:hover,
.tsc-person-card:focus {
    z-index: 10;
}

/* Glass effect on hover - Dark theme */
.tsc-dark .tsc-person-card:hover,
.tsc-dark .tsc-person-card:focus {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Glass effect on hover - Light theme */
.tsc-light .tsc-person-card:hover,
.tsc-light .tsc-person-card:focus {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

/* ============================================
   Slider Controls - Glass Effect
   ============================================ */
.tsc-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.tsc-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Glass effect for buttons - Dark theme */
.tsc-dark .tsc-slider-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tsc-dark .tsc-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Glass effect for buttons - Light theme */
.tsc-light .tsc-slider-btn {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #475569;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tsc-light .tsc-slider-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.7);
    color: #1e293b;
    transform: scale(1.05);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tsc-slider-btn:active {
    transform: scale(0.95);
}

.tsc-slider-btn svg {
    width: 20px;
    height: 20px;
}

/* Play/Pause button */
.tsc-slider-btn.tsc-play-pause {
    width: 40px;
    height: 40px;
}

.tsc-slider-btn.tsc-play-pause svg {
    width: 16px;
    height: 16px;
}

/* Progress indicator */
.tsc-slider-progress {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.tsc-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tsc-dark .tsc-progress-dot {
    background: rgba(255, 255, 255, 0.2);
}

.tsc-light .tsc-progress-dot {
    background: rgba(0, 0, 0, 0.15);
}

.tsc-progress-dot.active {
    width: 24px;
    border-radius: 4px;
}

.tsc-dark .tsc-progress-dot.active {
    background: var(--tsc-accent, #2563eb);
}

.tsc-light .tsc-progress-dot.active {
    background: var(--tsc-accent, #2563eb);
}

/* ============================================
   Card Decorative Elements
   ============================================ */
.tsc-card-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.tsc-decor-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.tsc-person-card:hover .tsc-decor-pattern,
.tsc-person-card:focus .tsc-decor-pattern {
    opacity: 0.3;
}

.tsc-decor-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 1.5rem;
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.tsc-decor-lines span {
    display: block;
    height: 2px;
    border-radius: 1px;
}

.tsc-dark .tsc-decor-lines span {
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 80%);
}

.tsc-light .tsc-decor-lines span {
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, transparent 80%);
}

.tsc-decor-lines span:nth-child(1) { width: 60%; }
.tsc-decor-lines span:nth-child(2) { width: 80%; }
.tsc-decor-lines span:nth-child(3) { width: 45%; }

.tsc-person-card:hover .tsc-decor-lines,
.tsc-person-card:focus .tsc-decor-lines {
    opacity: 0;
}

/* ============================================
   Person Info - Always Visible
   ============================================ */
.tsc-person-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem;
    padding-top: 1.5rem;
    text-align: center;
    z-index: 2;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tsc-person-card:hover .tsc-person-info,
.tsc-person-card:focus .tsc-person-info {
    opacity: 0;
}

/* Avatar - Fits inside card */
.tsc-person-avatar {
    width: 234px;
    height: 234px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.tsc-dark .tsc-person-avatar {
    border: 5px solid #0a1628;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.tsc-light .tsc-person-avatar {
    border: 5px solid #f8fafc;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.tsc-person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tsc-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--tsc-accent, #2563eb) 0%, #8b5cf6 100%);
    color: #ffffff;
}

/* Name & Title */
.tsc-person-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.tsc-dark .tsc-person-name {
    color: #ffffff;
}

.tsc-light .tsc-person-name {
    color: #0f172a;
}

.tsc-person-title {
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.tsc-dark .tsc-person-title {
    color: rgba(255, 255, 255, 0.6);
}

.tsc-light .tsc-person-title {
    color: #64748b;
}


/* ============================================
   Testimonial Reveal - Shown on Hover
   ============================================ */
.tsc-testimonial-reveal {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tsc-person-card:hover .tsc-testimonial-reveal,
.tsc-person-card:focus .tsc-testimonial-reveal {
    opacity: 1;
}

.tsc-reveal-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass effect for reveal overlay - Dark theme */
.tsc-dark .tsc-reveal-inner {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Glass effect for reveal overlay - Light theme */
.tsc-light .tsc-reveal-inner {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 4px 24px rgba(0, 0, 0, 0.1);
}

.tsc-person-card:hover .tsc-reveal-inner,
.tsc-person-card:focus .tsc-reveal-inner {
    transform: translateY(0);
}

/* Rating Stars */
.tsc-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.tsc-person-card:hover .tsc-rating,
.tsc-person-card:focus .tsc-rating {
    transform: translateY(0);
    opacity: 1;
}

.tsc-star {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.3);
}

.tsc-light .tsc-star {
    color: rgba(0, 0, 0, 0.2);
}

.tsc-star svg {
    width: 100%;
    height: 100%;
}

.tsc-star.filled {
    color: #fbbf24;
}

/* Quote Text */
.tsc-quote {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    font-style: normal;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.3s ease 0.15s;
}

.tsc-light .tsc-quote {
    color: #1e293b;
}

.tsc-person-card:hover .tsc-quote,
.tsc-person-card:focus .tsc-quote {
    transform: translateY(0);
    opacity: 1;
}

/* Quote Icon */
.tsc-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.tsc-light .tsc-quote-icon {
    color: rgba(0, 0, 0, 0.15);
}

.tsc-quote-icon svg {
    width: 100%;
    height: 100%;
}

.tsc-person-card:hover .tsc-quote-icon,
.tsc-person-card:focus .tsc-quote-icon {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .tsc-header {
        margin-bottom: 2rem;
    }
    
    .tsc-person-card {
        width: 260px;
        height: 347px; /* 3:4 ratio */
        min-width: 260px;
        max-width: 260px;
    }
    
    .tsc-person-avatar {
        width: 208px;
        height: 208px;
    }
    
    .tsc-avatar-placeholder {
        font-size: 5rem;
    }
    
    .tsc-person-name {
        font-size: 1rem;
    }
    
    .tsc-person-title {
        font-size: 0.8125rem;
    }
}

@media (max-width: 992px) {
    .testimonials-showcase {
        padding: 3rem 0;
    }
    
    .tsc-header {
        margin-bottom: 2rem;
    }
    
    .tsc-person-card {
        width: 240px;
        height: 320px; /* 3:4 ratio */
        min-width: 240px;
        max-width: 240px;
    }
    
    .tsc-person-avatar {
        width: 195px;
        height: 195px;
    }
    
    .tsc-avatar-placeholder {
        font-size: 4.75rem;
    }
    
    .tsc-slider-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .testimonials-showcase {
        padding: 2.5rem 0;
    }
    
    .tsc-header {
        margin-bottom: 1.5rem;
    }
    
    .tsc-title {
        font-size: 1.75rem;
    }
    
    .tsc-people-grid {
        gap: 1rem;
    }
    
    .tsc-person-card {
        width: 200px;
        height: 267px; /* 3:4 ratio */
        min-width: 200px;
        max-width: 200px;
    }
    
    .tsc-person-info {
        padding: 1rem;
        padding-top: 1rem;
    }
    
    .tsc-person-avatar {
        width: 156px;
        height: 156px;
        margin-bottom: 0.75rem;
    }
    
    .tsc-avatar-placeholder {
        font-size: 3.75rem;
    }
    
    .tsc-person-name {
        font-size: 0.875rem;
    }
    
    .tsc-person-title {
        font-size: 0.6875rem;
    }
    
    .tsc-reveal-inner {
        padding: 1rem 0.75rem;
    }
    
    .tsc-quote {
        font-size: 0.75rem;
        -webkit-line-clamp: 3;
    }
    
    .tsc-star {
        width: 12px;
        height: 12px;
    }
    
    .tsc-slider-btn {
        width: 38px;
        height: 38px;
    }
    
    .tsc-slider-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-showcase {
        padding: 2rem 0;
    }
    
    .tsc-header {
        margin-bottom: 1.25rem;
    }
    
    .tsc-title {
        font-size: 1.5rem;
    }
    
    .tsc-subtitle {
        font-size: 0.75rem;
    }
    
    .tsc-people-grid {
        gap: 0.75rem;
    }
    
    .tsc-person-card {
        width: 160px;
        height: 213px; /* 3:4 ratio */
        min-width: 160px;
        max-width: 160px;
    }
    
    .tsc-person-info {
        padding: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .tsc-person-avatar {
        width: 117px;
        height: 117px;
        margin-bottom: 0.5rem;
    }
    
    .tsc-avatar-placeholder {
        font-size: 3.25rem;
    }
    
    .tsc-person-name {
        font-size: 0.75rem;
    }
    
    .tsc-person-title {
        font-size: 0.625rem;
    }
    
    .tsc-quote {
        -webkit-line-clamp: 3;
        font-size: 0.6875rem;
    }
    
    .tsc-quote-icon {
        width: 16px;
        height: 16px;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .tsc-slider-controls {
        gap: 0.75rem;
    }
    
    .tsc-slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .tsc-slider-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .tsc-progress-dot {
        width: 6px;
        height: 6px;
    }
    
    .tsc-progress-dot.active {
        width: 18px;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .tsc-person-card,
    .tsc-person-info,
    .tsc-testimonial-reveal,
    .tsc-reveal-inner,
    .tsc-rating,
    .tsc-quote,
    .tsc-quote-icon,
    .tsc-decor-pattern,
    .tsc-decor-lines {
        transition: none;
    }
    
    .tsc-person-card:hover,
    .tsc-person-card:focus {
        transform: none;
    }
    
    .tsc-person-card:hover .tsc-person-info,
    .tsc-person-card:focus .tsc-person-info {
        transform: none;
        opacity: 0;
    }
    
    .tsc-person-card:hover .tsc-reveal-inner,
    .tsc-person-card:focus .tsc-reveal-inner,
    .tsc-person-card:hover .tsc-rating,
    .tsc-person-card:focus .tsc-rating,
    .tsc-person-card:hover .tsc-quote,
    .tsc-person-card:focus .tsc-quote,
    .tsc-person-card:hover .tsc-quote-icon,
    .tsc-person-card:focus .tsc-quote-icon {
        transform: none;
    }
}

/* Focus visible for keyboard navigation */
.tsc-person-card:focus {
    outline: none;
}

.tsc-person-card:focus-visible {
    outline: 2px solid var(--tsc-accent, #2563eb);
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tsc-dark .tsc-person-card {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .tsc-light .tsc-person-card {
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    .tsc-quote {
        color: #ffffff;
    }
}

/* Touch devices - show reveal on tap */
@media (hover: none) {
    .tsc-person-card:active .tsc-person-info {
        transform: translateY(-20px) scale(0.85);
        opacity: 0;
    }
    
    .tsc-person-card:active .tsc-testimonial-reveal {
        opacity: 1;
    }
    
    .tsc-person-card:active .tsc-reveal-inner {
        transform: translateY(0);
    }
    
    .tsc-person-card:active .tsc-rating,
    .tsc-person-card:active .tsc-quote,
    .tsc-person-card:active .tsc-quote-icon {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}


/* ============================================
   Touch Device Revealed State (via JS)
   ============================================ */
.tsc-person-card.tsc-revealed {
    z-index: 10;
}

/* Glass effect for revealed state - Dark theme */
.tsc-dark .tsc-person-card.tsc-revealed {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Glass effect for revealed state - Light theme */
.tsc-light .tsc-person-card.tsc-revealed {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.tsc-person-card.tsc-revealed .tsc-person-info {
    opacity: 0;
}

.tsc-person-card.tsc-revealed .tsc-testimonial-reveal {
    opacity: 1;
}

.tsc-person-card.tsc-revealed .tsc-reveal-inner {
    transform: translateY(0);
}

.tsc-person-card.tsc-revealed .tsc-rating {
    transform: translateY(0);
    opacity: 1;
}

.tsc-person-card.tsc-revealed .tsc-quote {
    transform: translateY(0);
    opacity: 1;
}

.tsc-person-card.tsc-revealed .tsc-quote-icon {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}

.tsc-person-card.tsc-revealed .tsc-decor-pattern {
    opacity: 0.3;
}

.tsc-person-card.tsc-revealed .tsc-decor-lines {
    opacity: 0;
}


/* ============================================
   Scroll Container Interaction States
   ============================================ */
.tsc-scroll-container {
    cursor: grab;
}

.tsc-scroll-container.tsc-grabbing {
    cursor: grabbing;
}

.tsc-scroll-container.tsc-grabbing * {
    pointer-events: none;
}
