/* ============================================
   Infographic Hero Section
   ============================================ */
.infographic-hero {
    background: linear-gradient(135deg, var(--theme-bg-primary, #f8fafc) 0%, var(--theme-bg-secondary, #e2e8f0) 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.infographic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 166, 156, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.infographic-hero-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Series Details Hero Image */
.series-details-hero-image-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.series-details-hero-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.series-details-hero-image-container:hover .series-details-hero-image {
    transform: scale(1.02);
}

.series-title-hero {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--theme-text-primary, #1e293b);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.series-tagline {
    font-size: 1.125rem;
    color: var(--theme-text-secondary, #64748b);
    margin: 0;
    font-weight: 500;
}

.infographic-showcase {
    position: relative;
    z-index: 1;
}

.infographic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .infographic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .infographic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.infographic-item {
    display: flex;
    justify-content: center;
}

.infographic-card {
    width: 100%;
    max-width: 380px;
    background: var(--theme-bg-primary, #ffffff);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.infographic-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--theme-bg-secondary, #f1f5f9);
}

.infographic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.infographic-card:hover .infographic-image {
    transform: scale(1.03);
}

.infographic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.infographic-card:hover .infographic-overlay {
    opacity: 1;
}

.infographic-view-btn {
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Ensure btn-theme-contrast styling works in overlay context */
.infographic-overlay .btn-theme-contrast {
    background-color: var(--surface-1, white);
    color: var(--theme-text-primary, #1e293b);
}

.infographic-label {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--theme-bg-primary, #ffffff);
}

.infographic-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-primary, #00A69C), var(--theme-primary-hover, #00857A));
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.infographic-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--theme-text-primary, #1e293b);
    line-height: 1.3;
}

.infographic-meta {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.75rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   Infographic Lightbox
   ============================================ */
.infographic-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.infographic-lightbox-content {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0 2rem;
}

.infographic-lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.infographic-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.infographic-lightbox-image {
    max-width: min(90vw, 600px);
    width: auto;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.infographic-lightbox-title {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

/* Mobile adjustments for lightbox */
@media (max-width: 640px) {
    .infographic-lightbox-image {
        max-width: 95vw;
    }

    .infographic-lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   Dark Mode - Infographic Hero
   ============================================ */
[data-bs-theme="dark"] .infographic-hero,
.dark-mode .infographic-hero {
    background: linear-gradient(135deg, var(--theme-bg-secondary, #1e293b) 0%, var(--theme-bg-tertiary, #0f172a) 100%);
}

[data-bs-theme="dark"] .infographic-hero::before,
.dark-mode .infographic-hero::before {
    background: radial-gradient(circle at 20% 50%, rgba(0, 166, 156, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

[data-bs-theme="dark"] .series-title-hero,
.dark-mode .series-title-hero {
    color: var(--theme-text-primary, #f1f5f9);
}

[data-bs-theme="dark"] .series-tagline,
.dark-mode .series-tagline {
    color: var(--theme-text-secondary, #94a3b8);
}

[data-bs-theme="dark"] .infographic-card,
.dark-mode .infographic-card {
    background: var(--theme-bg-secondary, #1e293b);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .infographic-card:hover,
.dark-mode .infographic-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

[data-bs-theme="dark"] .infographic-image-wrapper,
.dark-mode .infographic-image-wrapper {
    background-color: var(--theme-bg-tertiary, #0f172a);
}

[data-bs-theme="dark"] .infographic-label,
.dark-mode .infographic-label {
    background: var(--theme-bg-secondary, #1e293b);
}

[data-bs-theme="dark"] .infographic-title,
.dark-mode .infographic-title {
    color: var(--theme-text-primary, #f1f5f9);
}

/* ============================================
   Event Image Container Styles
   ============================================ */
/* Event Image Container Styles */
.event-image-container {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 3 / 2;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    margin-right: 1rem;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    background: #e5e7eb;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    background: #e5e7eb;
}

.event-image-container:hover .event-image {
    transform: scale(1.1);
}

/* finale invitational styles moved to components/finale-invitational.css */

.event-image-container.placeholder-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.event-image-container.placeholder-container i {
    font-size: 2.5rem;
    color: #6b7280;
}

.event-entry {
    transition: all 0.3s ease;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
    width: 100%;
}

.event-entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.event-entry .event-week {
    font-size: 1.2rem;
    color: white;
}

.event-entry .event-date {
    color: white;
    font-weight: 500;
}

.event-entry .event-name {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.recap-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.recap-badge.active-badge {
    background: rgba(59, 130, 246, 0.3);
    color: white;
}

.recap-badge.ace-pot-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.2));
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.recap-badge.ace-pot-badge:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 165, 0, 0.3));
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.recap-badge.ace-pot-badge i {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.event-history-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1.5rem;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 320px;
}

.event-history-header {
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-history-title {
    color: white;
    font-weight: 600;
    margin: 0;
}

.list-group-flush {
    padding: 1rem;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.3);
}

.empty-state-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.empty-state-message {
    color: rgba(255, 255, 255, 0.7);
}

/* Day Badge Styles */
.day-badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-badge {
    display: inline-block;
    background: var(--theme-primary, #00A69C);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    color: var(--theme-primary-contrast, white);
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 120px;
    text-align: center;
}

/* Your Bag Tag Section Styles */
.your-bag-tag-section {
    background-color: var(--surface-1);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.your-bag-tag-section:hover {
    box-shadow: var(--card-hover-shadow);
}

.your-bag-tag-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.5rem 1.5rem 0.5rem;
}

.your-bag-tag-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.your-bag-tag-divider {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-color), transparent);
}

.weekly-summary-container {
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.weekly-summary {
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    height: 100%;
}

.weekly-summary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.weekly-summary .card-body {
    padding: 1.5rem;
}

.weekly-summary h4 {
    color: var(--theme-primary, #3b82f6);
    margin-bottom: 1rem;
    font-weight: 600;
}

.weekly-summary-content {
    line-height: 1.6;
    color: var(--text-primary);
}

.weekly-summary-content p {
    margin-bottom: 0.75rem;
}

/* Custom styles for the bag tag in the "Your Bag Tag" section */
.your-bag-tag {
    margin: 0 auto;
    width: 100%;
    max-width: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.your-bag-tag:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* FlippySays component styling */
.flippy-says {
    background-color: var(--surface-1);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.flippy-says:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

/* Allow Flippy's action text to be more visible */
.flippy-action {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Tab styles for better visibility - with higher specificity */
.series-details-page .nav-tabs .nav-link {
    color: var(--text-primary, #374151);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.series-details-page .nav-tabs .nav-link:hover {
    color: var(--theme-primary, #3b82f6);
    background-color: rgba(59, 130, 246, 0.1);
}

.series-details-page .nav-tabs .nav-link.active {
    background-color: var(--surface-1, #ffffff);
    color: var(--theme-primary, #3b82f6);
    border-color: var(--border-color, #e5e7eb);
    font-weight: 700;
}

/* Dark mode styles */
[data-bs-theme="dark"] {
    .event-image-container.placeholder-container {
        background: linear-gradient(135deg, #374151, #1f2937);
    }

    .event-image-container.placeholder-container i {
        color: #9ca3af;
    }

    .flippy-says {
        background-color: var(--surface-2, #1e293b);
        border: 1px solid rgba(96, 165, 250, 0.15);
    }

    .flippy-says-intro {
        border-bottom: 1px solid rgba(96, 165, 250, 0.15);
    }

    .flippy-action {
        color: rgba(255, 255, 255, 0.6);
    }

    /* Dark mode for your bag tag section */

    .your-bag-tag-section {
        background-color: var(--surface-2, #1e293b);
    }

    .your-bag-tag:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    /* Dark mode for tabs - improved contrast with higher specificity */

    .series-details-page .nav-tabs .nav-link {
        color: rgba(255, 255, 255, 0.95) !important;
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .series-details-page .nav-tabs .nav-link:hover {
        color: #93c5fd !important;
        background-color: rgba(147, 197, 253, 0.15) !important;
        border-color: rgba(147, 197, 253, 0.3);
        transform: translateY(-1px);
    }

    .series-details-page .nav-tabs .nav-link.active {
        background-color: rgba(96, 165, 250, 0.2) !important;
        color: #93c5fd !important;
        border-color: rgba(96, 165, 250, 0.4);
        border-bottom-color: transparent;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(96, 165, 250, 0.2);
    }

    .tab-content {
        background-color: var(--surface-2, #1e293b);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        border-radius: 0 0 0.5rem 0.5rem;
    }
}

/* Featured Event Styles */
.featured-event-images {
    display: flex !important;
    visibility: visible !important;
}

.featured-league-image-box {
    visibility: visible !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background-color: var(--surface-1, white);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.featured-league-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    max-width: 180px;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.featured-league-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--theme-text-primary, #1e293b);
}

.featured-event-image-box {
    visibility: visible !important;
    display: block !important;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.featured-event-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
}

/* Series Leaderboard Button - uses btn-theme-base btn-theme-accent */
/* Custom styles removed - now uses standard theme button pattern */

/* ============================================
   3:2 Aspect Ratio Utility
   ============================================ */
.aspect-ratio-3-2 {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 2/3 = 0.6667 */
    overflow: hidden;
}

.aspect-ratio-3-2 > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Included Leagues Section
   ============================================ */
.included-leagues-section {
    background-color: var(--surface-1, #ffffff);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.included-leagues-section h3 {
    color: var(--theme-text-primary, #1e293b);
    font-weight: 700;
    font-size: 1.25rem;
}

/* League infographic in two-column layout */
.league-infographic-inline {
    height: 100%;
}

.league-infographic-inline .infographic-card {
    height: 100%;
}

.league-infographic-inline .infographic-image-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
}

/* New leagues list styling */
.leagues-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.league-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background-color: var(--surface-2, #f8fafc);
    border: 1px solid var(--theme-border-color, #e2e8f0);
    border-radius: 0.5rem;
    color: var(--theme-text-primary, #1e293b);
    text-decoration: none;
    transition: all 0.2s ease;
}

.league-list-item:hover {
    background-color: var(--theme-primary-light, rgba(0, 166, 156, 0.1));
    border-color: var(--theme-primary, #00A69C);
    color: var(--theme-primary, #00A69C);
    transform: translateX(4px);
    text-decoration: none;
}

.league-list-item .league-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.league-day-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.25em 0.75em;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: var(--theme-primary-contrast, white);
    background-color: var(--theme-primary, #00A69C);
    border-radius: 9999px;
}

/* Dark mode for included leagues */
[data-bs-theme="dark"] .included-leagues-section,
.dark-mode .included-leagues-section {
    background-color: var(--surface-2, #1e293b);
}

[data-bs-theme="dark"] .included-leagues-section h3,
.dark-mode .included-leagues-section h3 {
    color: var(--theme-text-primary, #f1f5f9);
}

[data-bs-theme="dark"] .league-list-item,
.dark-mode .league-list-item {
    background-color: var(--surface-3, #0f172a);
    border-color: var(--theme-border-color, #334155);
    color: var(--theme-text-primary, #f1f5f9);
}

[data-bs-theme="dark"] .league-list-item:hover,
.dark-mode .league-list-item:hover {
    background-color: rgba(0, 166, 156, 0.15);
    color: var(--theme-primary, #00A69C);
}

/* ============================================
   Flippy Progressive Disclosure
   ============================================ */
.flippy-read-more-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background: var(--surface-2, #f1f5f9);
    color: var(--theme-primary, #00A69C);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.flippy-read-more-btn:hover {
    background: var(--theme-primary-light, rgba(0, 166, 156, 0.1));
    transform: translateY(-1px);
}

.flippy-read-more-btn .btn-icon {
    transition: transform 0.2s ease;
}

.flippy-read-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

/* Dark mode */
[data-bs-theme="dark"] .flippy-read-more-btn,
.dark-mode .flippy-read-more-btn {
    background: var(--surface-3, #1e293b);
    color: var(--theme-primary, #00A69C);
}

[data-bs-theme="dark"] .flippy-read-more-btn:hover,
.dark-mode .flippy-read-more-btn:hover {
    background: rgba(0, 166, 156, 0.15);
}

/* ============================================
   Flippy Teaser Button
   ============================================ */
.flippy-teaser-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface-2, #f1f5f9);
    border: 2px solid var(--theme-primary, #00A69C);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.flippy-teaser-btn:hover {
    background: rgba(0, 166, 156, 0.1);
    transform: translateY(-1px);
}

.flippy-teaser-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.flippy-teaser-text {
    flex: 1;
    font-weight: 500;
    color: var(--theme-text-primary, #1e293b);
    font-size: 0.95rem;
}

.flippy-teaser-icon {
    color: var(--theme-primary, #00A69C);
    transition: transform 0.3s ease;
}

.flippy-teaser-btn[aria-expanded="true"] .flippy-teaser-icon {
    transform: rotate(180deg);
}

/* Dark mode */
[data-bs-theme="dark"] .flippy-teaser-btn,
.dark-mode .flippy-teaser-btn {
    background: var(--surface-3, #1e293b);
}

[data-bs-theme="dark"] .flippy-teaser-btn:hover,
.dark-mode .flippy-teaser-btn:hover {
    background: rgba(0, 166, 156, 0.15);
}
