/**
 * Gerd Neggo Award Page Styles
 * 
 * Narrative-driven, emotionally engaging award page design
 * 
 * @package Tantsuliit.ee
 * @since 2.0.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --primary: #2B5BDB;
    --primary-dark: #1E40AF;
    --accent: #3B82F6;
    --dark: #1F2937;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Page Reset & Base
   ========================================================================== */

.gerd-neggo-page {
    background: var(--gray-50);
}

.page-content {
    background: var(--gray-50);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    background: var(--white);
    color: var(--gray-900);
    padding: 4rem 2rem 3rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.hero-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    margin: 0 0 2rem 0;
    line-height: 1.7;
    color: var(--gray-800);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

/* Nomination Status Badge */
.nomination-status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 922px) {
    .site-content .ast-container {
        display: unset!important;
    }
}

.nomination-status.status-open {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.nomination-status.status-closed {
    background: var(--gray-200);
    color: var(--gray-700);
}

.status-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.status-text {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.status-period {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    margin-left: 0.25rem;
}

.nomination-status.status-open .status-period {
    opacity: 0.95;
}

.nomination-status.status-closed .status-period {
    color: var(--gray-600);
}

/* ==========================================================================
   Overview Section
   ========================================================================== */

.overview-section {
    background: var(--white);
    padding: 3rem 1.5rem;
}

/* Hero Video Section - After Overview Cards */
.intro-video-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.intro-video-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin: 0 0 2rem 0;
}

.hero-video-full {
    max-width: 1000px;
    margin: 0 auto;
}

.video-hero-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: var(--gray-900);
}

.video-hero-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Overview Cards Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.overview-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.overview-card-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--primary);
    color: var(--white);
}

.overview-card-cta:hover {
    transform: translateY(-6px) scale(1.02);
}

.overview-icon {
    margin: 0 auto 1rem;
    color: var(--primary);
}

.overview-icon svg {
    display: block;
    margin: 0 auto;
}

.overview-card-cta .overview-icon {
    color: var(--white);
}

.overview-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.overview-card-cta .overview-card-title {
    color: var(--white);
}

.overview-card-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.overview-card-cta .overview-card-text {
    color: var(--white);
    opacity: 0.95;
}

.overview-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0;
    flex: 1;
}

.overview-card-cta .overview-card-desc {
    color: var(--white);
    opacity: 0.9;
}

.overview-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-top: auto;
}

.overview-link:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.overview-card-cta .overview-link {
    background: var(--white);
    color: var(--primary);
}

.overview-card-cta .overview-link:hover {
    background: var(--gray-100);
}

/* ==========================================================================
   Section Base
   ========================================================================== */

.section {
    padding: 4rem 1.5rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin: 0;
}

.section-meta {
    font-size: 1.1rem;
    color: var(--primary);
    font-style: italic;
    margin: 0.5rem 0 0 0;
}

/* ==========================================================================
   About Gerd Neggo Section - Compact
   ========================================================================== */

.about-section-compact {
    background: var(--white);
    padding: 3rem 1.5rem;
}

.bio-compact-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.bio-image-compact {
    margin: 0;
}

.bio-image-compact img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.bio-content-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bio-compact-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.bio-compact-dates {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
}

.bio-compact-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-style: italic;
    margin: 0 0 0.75rem 0;
}

.bio-compact-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.bio-compact-text p:first-child {
    margin-top: 0;
}

.bio-compact-text p:last-child {
    margin-bottom: 0;
}

.bio-compact-additional {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.bio-compact-additional p:first-child {
    margin-top: 0;
}

.bio-compact-additional p:last-child {
    margin-bottom: 0;
}

.bio-compact-gallery {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bio-compact-gallery figure {
    margin: 0;
}

.bio-compact-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.bio-compact-gallery figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
    text-align: center;
}

/* ==========================================================================
   Award Section
   ========================================================================== */

.award-section {
    background: var(--white);
}

.award-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.award-intro p:first-child {
    margin-top: 0;
}

.award-intro strong {
    color: var(--primary);
}

/* Video Feature */
.video-feature {
    max-width: 900px;
    margin: 3rem auto;
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.video-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Goals List */
.goals-list {
    max-width: 900px;
    margin: 3rem auto;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 1.5rem 0;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.checklist-item {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 3rem;
    background: var(--white);
    border-left: 4px solid var(--success);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.checklist-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.checklist-item::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    color: var(--success);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Laureate Videos */
.laureate-videos {
    margin-top: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-card-header {
    margin-bottom: 1rem;
}

.video-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
}

.video-card-year {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.video-card .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-card .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   CTA Section (How to Nominate) - Step by Step
   ========================================================================== */

.cta-section {
    background: var(--white);
}

.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white)!important;
    margin: 0 0 0.75rem 0;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
}

.cta-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Step WYSIWYG Content Styling */
.step-wysiwyg h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
}

.step-wysiwyg h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1rem 0 0.5rem 0;
}

.step-wysiwyg p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0 0 0.75rem 0;
}

.step-wysiwyg ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: grid;
    gap: 0.5rem;
}

.step-wysiwyg ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.step-wysiwyg ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.step-wysiwyg strong {
    font-weight: 600;
    color: var(--gray-900);
}

.step-wysiwyg a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    transition: all 0.2s ease;
}

.step-wysiwyg a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.step-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.inline-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    transition: all 0.2s ease;
}

.inline-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.criteria-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.criteria-list-compact li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.criteria-list-compact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: grid;
    gap: 0.5rem;
}

.requirements-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.requirements-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.cta-footer {
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta-note {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    text-align: center;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1.125rem 3rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Statute Section - Separate & Clean
   ========================================================================== */

.statute-section {
    background: var(--gray-100);
}

.statute-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.statute-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.statute-header svg {
    color: var(--primary);
}

.statute-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.statute-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin: 0;
}

.statute-accordion {
    border: none;
}

.statute-summary-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gray-800);
    transition: all 0.2s ease;
}

.statute-summary-simple::-webkit-details-marker {
    display: none;
}

.statute-summary-simple:hover {
    background: var(--gray-100);
}

.statute-toggle-simple {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
}

.statute-content-simple {
    padding: 2rem 0 0 0;
}

.statute-wysiwyg ol {
    list-style: none;
    counter-reset: statute-counter;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.statute-wysiwyg ol > li {
    counter-increment: statute-counter;
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 3rem;
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.statute-wysiwyg ol > li::before {
    content: counter(statute-counter) ".";
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
}

.statute-wysiwyg ul {
    margin: 0.75rem 0 0 1.5rem;
    padding: 0;
    list-style: disc;
}

.statute-wysiwyg ul li {
    padding: 0.25rem 0;
    background: transparent;
    border: none;
    font-size: 0.95rem;
}

.statute-wysiwyg ul li::before {
    display: none;
}

.statute-wysiwyg p {
    margin: 0.5rem 0;
}

.statute-wysiwyg strong {
    font-weight: 600;
    color: var(--gray-900);
}

.statute-list-clean {
    list-style: none;
    counter-reset: statute-counter;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.statute-item-clean {
    counter-increment: statute-counter;
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 3rem;
    background: var(--gray-50);
    border-left: 3px solid var(--primary);
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.statute-item-clean::before {
    content: counter(statute-counter) ".";
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
}

/* ==========================================================================
   Laureates Section
   ========================================================================== */

.laureates-section {
    background: var(--gray-100);
}

/* Filters */
.filters-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--gray-50);
    transition: all 0.2s ease;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(43, 91, 219, 0.1);
}

/* Laureates Grid */
.laureates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.laureate-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.laureate-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.laureate-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.laureate-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.laureate-card:hover .laureate-img {
    transform: scale(1.08);
}

.laureate-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.laureate-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    text-align: center;
}

.laureate-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 1rem 0;
    text-align: center;
}

.laureate-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.laureate-title a:hover {
    color: var(--primary);
}

.laureate-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.laureate-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.laureate-link:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    font-size: 1.125rem;
    color: var(--gray-600);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.empty-state {
    text-align: center;
    padding: 3rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ==========================================================================
   Footer Support Section
   ========================================================================== */

.support-section {
    background: var(--white);
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.support-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.support-text strong {
    color: var(--primary);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .bio-compact-wrapper {
        grid-template-columns: 180px 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3.5rem 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .overview-section {
        padding: 2rem 1rem;
    }
    
    .nomination-status {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .status-period {
        font-size: 0.8rem;
        flex-basis: 100%;
        text-align: center;
        margin-top: 0.25rem;
        margin-left: 0;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .intro-video-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .intro-video-title {
        font-size: 1.75rem;
    }
    
    .cta-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .statute-card {
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bio-compact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .bio-compact-gallery {
        grid-template-columns: 1fr;
    }
    
    .video-feature {
        padding: 1.5rem;
    }
    
    .cta-content {
        padding: 1rem;
    }
    
    .cta-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-card {
        padding: 1rem;
    }
    .filters-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .filter-label {
        font-size: 0.8125rem;
    }
    
    .laureates-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nomination-status {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }

    .laureates-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-video-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .video-wrapper,
    .video-embed,
    .video-hero-wrapper {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }

    .laureate-card,
    .overview-card {
        break-inside: avoid;
        box-shadow: none;
    }
}
