/* ===================================
   Event Detail Page - Modern Professional Styles
   =================================== */

:root {
    --primary-color: #f57c00;
    --primary-dark: #e65100;
    --primary-light: #ffb74d;
    --secondary-color: #2E1065;
    --secondary-dark: #1a0b3d;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --background-light: #f7fafc;
    --background-white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-white);
}

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

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

.event-hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(46, 16, 101, 0.95) 0%, 
        rgba(26, 11, 61, 0.90) 50%,
        rgba(46, 16, 101, 0.85) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.event-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.event-breadcrumb a:hover {
    color: var(--primary-light);
}

.event-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.event-breadcrumb .current {
    color: var(--primary-light);
    font-weight: 500;
}

.event-hero-content {
    color: white;
}

.event-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.event-status-badge,
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.event-status-badge.upcoming {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.event-status-badge.past {
    background: rgba(107, 114, 128, 0.2);
    border: 1px solid rgba(107, 114, 128, 0.4);
    color: #d1d5db;
}

.featured-badge {
    background: rgba(245, 124, 0, 0.2);
    border: 1px solid rgba(245, 124, 0, 0.4);
    color: var(--primary-light);
}

.event-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: var(--transition-base);
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.meta-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 0.75rem;
    color: white;
}

.meta-text {
    flex: 1;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.event-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 124, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===================================
   Event Detail Section
   =================================== */

.event-detail-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.event-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
}

.event-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.content-card:hover {
    box-shadow: var(--shadow-md);
}

.content-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

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

.content-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.content-body {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    text-align: justify;
}

.content-body p {
    text-align: justify;
}

.event-description {
    color: var(--text-secondary);
    text-align: justify;
}

.external-link-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 0;
    overflow: hidden;
}

.external-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

.external-link-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* ===================================
   Event Sidebar
   =================================== */

.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.sidebar-card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

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

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.info-item:hover {
    background: #edf2f7;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 0.5rem;
    color: white;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 124, 0, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
}

.action-btn.secondary {
    background: var(--background-light);
    color: var(--primary-color);
    border-color: var(--border-color);
}

.action-btn.secondary:hover {
    background: #edf2f7;
    border-color: var(--primary-light);
}

.action-btn.outline {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.action-btn.outline:hover {
    background: var(--background-light);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* ===================================
   Related Events Section
   =================================== */

.related-events-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.header-content {
    flex: 1;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.view-all-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.related-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.related-event-card {
    background: white;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

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

.related-event-card.past-event {
    opacity: 0.8;
}

.related-event-card.past-event:hover {
    opacity: 1;
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.related-event-card:hover .card-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.related-event-card:hover .image-overlay {
    opacity: 1;
}

.event-status-tag {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.event-status-tag.upcoming {
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

.event-status-tag.past {
    background: rgba(107, 114, 128, 0.95);
    color: white;
}

.event-status-tag.featured {
    background: rgba(245, 124, 0, 0.95);
    color: white;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-meta .date,
.card-meta .location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.card-meta svg {
    flex-shrink: 0;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-title a {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-fast);
}

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

.card-excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex: 1;
    text-align: justify;
}

.card-actions {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--background-light);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.btn-learn-more:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(3px);
}

.btn-learn-more svg {
    transition: var(--transition-base);
}

.btn-learn-more:hover svg {
    transform: translateX(3px);
}

.no-related-events {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    background: var(--background-light);
    border: 2px dashed var(--border-color);
}

/* ===================================
   Pagination
   =================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn.prev svg,
.pagination-btn.next svg {
    transition: var(--transition-fast);
}

.pagination-btn.prev:hover svg {
    transform: translateX(-3px);
}

.pagination-btn.next:hover svg {
    transform: translateX(3px);
}

.pagination-numbers {
    display: flex;
    gap: 0.375rem;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.pagination-number:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    pointer-events: none;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--text-muted);
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .event-layout {
        grid-template-columns: 1fr;
    }
    
    .event-sidebar {
        order: -1;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .related-events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .event-hero-section {
        min-height: 500px;
        padding: 6rem 0 4rem;
    }
    
    .event-hero-title {
        font-size: 2rem;
    }
    
    .event-hero-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .event-detail-section {
        padding: 3rem 0;
    }
    
    .content-card,
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .event-breadcrumb {
        flex-wrap: wrap;
        font-size: 0.8125rem;
    }
    
    .related-events-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .related-events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.375rem;
    }
    
    .pagination-btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .event-hero-section {
        min-height: 450px;
        padding: 5rem 0 3rem;
    }
    
    .event-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .content-header h2 {
        font-size: 1.5rem;
    }
    
    .meta-item {
        padding: 0.875rem;
    }
    
    .meta-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .view-all-link {
        width: 100%;
        justify-content: center;
    }
    
    .card-image {
        height: 180px;
    }
    
    .pagination-numbers {
        flex-wrap: wrap;
    }
    
    .pagination-number,
    .pagination-ellipsis {
        min-width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--large-size);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cce-orange);
}

.event-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.register-btn {
    background: var(--cce-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--large-size);
    transition: all 0.3s ease;
    border: 2px solid var(--cce-orange);
}

.register-btn:hover {
    background: transparent;
    color: var(--cce-orange);
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(245, 124, 0, 0.3);
    text-decoration: none;
}

.share-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: white;
}

.event-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
}

.event-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Event Content */
.event-content {
    padding: 5rem 0;
    background: white;
}

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

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-section {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 2.5rem;
    border-left: 4px solid var(--cce-orange);
}

.content-section h2 {
    font-size: var(--h2-size);
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--cce-orange) 0%, var(--cce-orange-light) 100%);
    border-radius: 2px;
}

/* Event Sidebar */
.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.sidebar-title {
    font-size: var(--h4-size);
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 0.25rem;
    background: var(--cce-orange);
    border-radius: 2px;
}

/* Event Info Card */
.event-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 3px solid var(--cce-orange);
}

.info-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--cce-orange) 0%, var(--cce-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-label {
    font-size: var(--small-size);
    color: var(--muted-color);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: var(--heading-color);
}

/* Related Events */
.related-events {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.related-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 124, 0, 0.1);
}

.related-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(245, 124, 0, 0.15);
}

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1.5rem;
}

.related-title {
    font-size: var(--h4-size);
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.related-date {
    color: var(--cce-orange);
    font-size: var(--small-size);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .event-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .event-content {
        padding: 3rem 0;
    }
    
    .related-events {
        padding: 3rem 0;
    }
}
.event-page .event-hero { background: linear-gradient(135deg, #252163 0%, #3a3780 100%); }
