:root {
    --primary: #00213f;
    --secondary: #0090d4;
    --accent: #00b4f2;
    --light: #f8fcff;
    --lighter: #e8f0fc;
    --white: #ffffff;
    --gray: #6c757d;
    --shadow: rgba(0, 33, 63, 0.15);
    --transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rka-scope {
    font-family: "Inter", sans-serif;
    background: var(--light);
    color: var(--primary);
    line-height: 1.8;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.rka-scope h1,
.rka-scope h2,
.rka-scope h3,
.rka-scope h4 {
    font-family: "Lora", serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.2px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(0, 33, 63, 0.8),
        rgba(0, 144, 212, 0.7)
    );
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(0, 180, 242, 0.1) 0%,
        transparent 70%
    );
    animation: wave 8s infinite ease-in-out;
}

@keyframes wave {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: 90%;
    margin: 4rem auto 0;
    padding: 2.5rem;
    color: var(--white);
    background: rgba(0, 33, 63, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 33, 63, 0.2);
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary-filled,
.btn-primary-outline {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 0 0.8rem;
}

.btn-primary-filled {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(0, 144, 212, 0.3);
}

.btn-primary-filled:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 144, 212, 0.4);
}

.btn-primary-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 144, 212, 0.2);
}

.btn-primary-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 144, 212, 0.3);
}

.btn-primary-filled i,
.btn-primary-outline i,
.btn-event i,
.btn-resource i,
.btn-custom i {
    margin-left: 8px;
    transition: transform 0.2s;
}

.btn-primary-filled:hover i,
.btn-primary-outline:hover i,
.btn-event:hover i,
.btn-resource:hover i,
.btn-custom:hover i {
    transform: translateX(6px);
}

/* Events Section */
.events-section,
.past-events-section,
.custom-training-section {
    padding: 1rem 0;
    background: linear-gradient(180deg, var(--white), var(--lighter));
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.events-section h2,
.past-events-section h2,
.custom-training-section h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    text-align: center;
    margin-bottom: 2rem;
}

.events-section .lead,
.past-events-section .lead,
.custom-training-section .lead {
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: var(--gray);
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: var(--lighter);
    border-radius: 50px;
    padding: 0.5rem;
}

.btn-filter {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    font-weight: 600;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    background: transparent;
    color: var(--primary);
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-filter:hover {
    color: var(--white);
    background: var(--accent);
    transform: scale(1.05);
}

.btn-filter.active {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 144, 212, 0.4);
}

.event-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

.event-card {
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    margin-bottom: 2rem;
    flex: 1 1 320px;
    max-width: 400px;
    min-width: 320px;
}

.event-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 33, 63, 0.25);
    border-color: var(--accent);
}

.event-card .event-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px 16px 0 0;
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 9;
}

.event-card .date-container {
    position: absolute;
    top: 0px;
    right: -1px;
    background: rgba(0, 180, 242, 0.95);
    color: var(--white);
    padding: 1rem;
    width: 75px;
    border: 3px solid var(--white);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 144, 212, 0.5);
    z-index: 10;
}

.event-card .day {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    line-height: 1;
}

.event-card .month {
    font-size: clamp(0.65rem, 2vw, 0.95rem);
    text-transform: uppercase;
}

.event-card .content {
    padding: 2rem;
}

.event-card .category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: var(--white);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    border-radius: 9999px;
    margin-bottom: 0.8rem;
}

.event-card h3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.event-card p {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    color: var(--gray);
    margin-bottom: 0;
    font-weight: 400;
}

.btn-event,
.btn-resource {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
}

.btn-event {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    box-shadow: 0 6px 15px rgba(0, 144, 212, 0.3);
}

.btn-event:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 144, 212, 0.4);
}

.btn-resource {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(0, 144, 212, 0.2);
}

.btn-resource:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 144, 212, 0.3);
}

/* Past Events */
.past-events-section .event-card .category {
    background: var(--gray);
}

.past-events-section .event-card .date-container {
    background: rgba(108, 117, 125, 0.95);
    box-shadow: 0 8px 16px rgba(108, 117, 125, 0.5);
    border: 3px solid var(--white);
}

/* Custom Training Section */
.custom-training-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
}

.custom-training-section .training-card {
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow);
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease,
        border-color 0.3s ease;
    transform: scale(0.95) !important;
    flex: 1 1 320px;
    max-width: 400px;
    min-width: 320px;
}

.custom-training-section .training-card:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 15px 35px rgba(0, 33, 63, 0.25);
    border-color: var(--accent);
}

.custom-training-section .training-card i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--accent);
    background: var(--lighter);
    border-radius: 50%;
    padding: 1.8rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.custom-training-section .training-card:hover i {
    transform: scale(1.1);
}

.custom-training-section .training-card h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    margin-bottom: 0.8rem;
}

.custom-training-section .training-card p {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    color: var(--gray);
    font-weight: 400;
}

.btn-custom {
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    padding: 0.9rem 3rem;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 2rem auto 0;
    box-shadow: 0 6px 20px rgba(0, 144, 212, 0.3);
    min-width: 200px;
}

.btn-custom:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 144, 212, 0.4);
}

/* Event Overlay */
.event-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 33, 63, 0.95);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;
}

.event-overlay.active {
    display: flex;
}

.event-overlay-content {
    background: var(--white);
    max-width: 900px;
    width: 100%;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 33, 63, 0.3);
    position: relative;
    margin: 2rem auto;
}

.event-overlay-content .category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: var(--white);
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.event-overlay-content h3 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
}

.event-overlay-content .lead {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.event-overlay-content .details {
    font-size: clamp(0.85rem, 2.2vw, 1rem);
    color: var(--primary);
    margin-bottom: 2rem;
}

.event-overlay-content .details i {
    margin-right: 0.75rem;
    color: var(--accent);
    font-size: clamp(0.85rem, 2.2vw, 1rem);
}

.event-overlay-content .btn-event,
.event-overlay-content .btn-resource {
    margin-right: 1rem;
}

.event-overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 33, 63, 0.2);
}

.event-overlay-close i {
    font-size: 1.5rem;
    color: var(--primary);
}

.event-overlay-close:hover {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 144, 212, 0.3);
}

.event-overlay-close:hover i {
    color: var(--white);
}

/* Responsive */
@media (min-width: 1400px) {
    .section-container {
        max-width: 1400px;
    }
    .events-section,
    .past-events-section,
    .custom-training-section {
        padding-right: 6rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    .hero-content {
        margin: 0 auto;
        padding: 1.5rem;
        width: 90%;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 5vw, 3.5rem);
    }
    .hero-content p {
        font-size: clamp(0.85rem, 2.8vw, 1.2rem);
    }
    .btn-primary-filled,
    .btn-primary-outline,
    .btn-event,
    .btn-resource {
        padding: 0.7rem 1.8rem;
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
        max-width: 220px;
    }
    .btn-custom {
        padding: 0.9rem 4rem;
        font-size: clamp(0.9rem, 2.2vw, 1rem);
        min-width: 240px;
    }
    .events-section,
    .past-events-section,
    .custom-training-section {
        padding: 6rem 0;
    }
    .events-section h2,
    .past-events-section h2,
    .custom-training-section h2 {
        font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    }
    .events-section .lead,
    .past-events-section .lead,
    .custom-training-section .lead {
        font-size: clamp(0.85rem, 2.2vw, 1.2rem);
    }
    .section-container {
        padding: 0 12px;
    }
    .event-grid {
        gap: 1.5rem;
        max-width: 100%;
    }
    .event-card {
        flex: 1 1 100%;
        max-width: 400px;
        min-width: 280px;
        margin: 1rem auto;
        margin-left: auto;
        margin-right: auto;
    }
    .event-card .event-image {
        height: 200px;
        aspect-ratio: 16 / 9;
    }
    .event-card .date-container {
        top: 8px;
        right: -25px;
        width: 65px;
        padding: 0.8rem;
        border: 2px solid var(--white);
        box-shadow: 0 6px 12px rgba(0, 144, 212, 0.4);
    }
    .event-card .day {
        font-size: clamp(1.2rem, 2.8vw, 1.7rem);
    }
    .event-card .month {
        font-size: clamp(0.6rem, 1.8vw, 0.85rem);
    }
    .event-card h3 {
        font-size: clamp(1.3rem, 2.8vw, 1.7rem);
    }
    .event-card p {
        font-size: clamp(0.8rem, 2.2vw, 1rem);
    }
    .btn-filter {
        padding: 0.6rem 1.8rem;
        font-size: clamp(0.8rem, 2vw, 0.95rem);
        max-width: 220px;
    }
    .custom-training-section .row {
        gap: 1.5rem;
    }
    .custom-training-section .training-card {
        padding: 2rem;
        flex: 1 1 100%;
        max-width: 400px;
        min-width: 280px;
        margin: 1rem auto;
        margin-left: auto;
        margin-right: auto;
    }
    .custom-training-section .training-card h3 {
        font-size: clamp(1.3rem, 2.8vw, 1.5rem);
    }
    .custom-training-section .training-card i {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    .event-overlay-content {
        padding: 2rem;
    }
    .event-overlay-content h3 {
        font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    }
    .event-overlay-content .lead,
    .event-overlay-content .details {
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    }
    .event-overlay-content .details i {
        font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 70vh;
        min-height: 450px;
    }
    .hero-content {
        margin: 0 auto;
        padding: 1.5rem;
        width: 90%;
    }
    .hero-content h1 {
        font-size: clamp(1.6rem, 4.5vw, 2.8rem);
    }
    .hero-content p {
        font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    }
    .btn-primary-filled,
    .btn-primary-outline,
    .btn-event,
    .btn-resource {
        padding: 0.6rem 1.8rem;
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        max-width: 200px;
    }
    .btn-custom {
        padding: 0.9rem 4rem;
        font-size: clamp(0.8rem, 2vw, 0.95rem);
        min-width: 240px;
    }
    .events-section,
    .past-events-section,
    .custom-training-section {
        padding: 6rem 0;
    }
    .events-section h2,
    .past-events-section h2,
    .custom-training-section h2 {
        font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    }
    .events-section .lead,
    .past-events-section .lead,
    .custom-training-section .lead {
        font-size: clamp(0.8rem, 2.2vw, 1.1rem);
    }
    .event-grid {
        gap: 1.5rem;
    }
    .event-card {
        flex: 1 1 100%;
        max-width: 380px;
        min-width: 280px;
        margin: 1rem auto;
        margin-left: auto;
        margin-right: auto;
    }
    .event-card .event-image {
        height: 180px;
        aspect-ratio: 16 / 9;
    }
    .event-card .date-container {
        top: 8px;
        right: -20px;
        width: 60px;
        padding: 0.7rem;
        border: 2px solid var(--white);
        box-shadow: 0 6px 12px rgba(0, 144, 212, 0.4);
    }
    .event-card .day {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }
    .event-card .month {
        font-size: clamp(0.55rem, 1.8vw, 0.75rem);
    }
    .event-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    }
    .event-card p {
        font-size: clamp(0.75rem, 2vw, 0.95rem);
    }
    .btn-filter {
        padding: 0.5rem 1.5rem;
        font-size: clamp(0.75rem, 1.8vw, 0.9rem);
        max-width: 200px;
        width: 100%;
    }
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        border-radius: 12px;
    }
    .custom-training-section .row {
        gap: 1.5rem;
    }
    .custom-training-section .training-card {
        padding: 1.8rem;
        flex: 1 1 100%;
        max-width: 380px;
        min-width: 280px;
        margin: 1rem auto;
        margin-left: auto;
        margin-right: auto;
    }
    .custom-training-section .training-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    }
    .custom-training-section .training-card i {
        font-size: clamp(1.8rem, 4vw, 2rem);
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    .event-overlay-content {
        padding: 1.5rem;
    }
    .event-overlay-content h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    }
    .event-overlay-content .lead,
    .event-overlay-content .details {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }
    .event-overlay-content .details i {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    .hero-content {
        margin-top: 8rem;
        padding: 2rem;
        width: 95%;
    }
    .hero-content h1 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }
    .hero-content p {
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
    }
    .btn-primary-filled,
    .btn-primary-outline,
    .btn-event,
    .btn-resource {
        padding: 0.6rem 1.8rem;
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        max-width: 180px;
        width: 100%;
    }
    .btn-custom {
        padding: 0.9rem 4rem;
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        min-width: 260px;
        width: 85%;
    }
    .events-section,
    .past-events-section,
    .custom-training-section {
        padding: 6rem 0;
    }
    .events-section h2,
    .past-events-section h2,
    .custom-training-section h2 {
        font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    }
    .events-section .lead,
    .past-events-section .lead,
    .custom-training-section .lead {
        font-size: clamp(0.75rem, 2.2vw, 0.95rem);
    }
    .event-grid {
        gap: 1rem;
    }
    .event-card {
        flex: 1 1 100%;
        max-width: 320px;
        min-width: 280px;
        min-height: 400px;
        margin: 1rem auto;
        margin-left: auto;
        margin-right: auto;
    }
    .event-card .event-image {
        height: 180px;
        aspect-ratio: 16 / 9;
    }
    .event-card .date-container {
        top: 6px;
        right: -15px;
        width: 55px;
        padding: 0.5rem;
        border: 1px solid var(--white);
        box-shadow: 0 4px 8px rgba(0, 144, 212, 0.4);
    }
    .event-card .day {
        font-size: clamp(1rem, 2.2vw, 1.3rem);
    }
    .event-card .month {
        font-size: clamp(0.5rem, 1.8vw, 0.65rem);
    }
    .event-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    }
    .event-card p {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
    }
    .btn-filter {
        padding: 0.6rem 1.8rem;
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
        max-width: 180px;
        width: 100%;
    }
    .custom-training-section .row {
        gap: 1rem;
    }
    .custom-training-section .training-card {
        padding: 1.2rem;
        flex: 1 1 100%;
        max-width: 320px;
        min-width: 280px;
        min-height: 280px;
        margin: 1rem auto;
        margin-left: auto;
        margin-right: auto;
    }
    .custom-training-section .training-card h3 {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }
    .custom-training-section .training-card i {
        font-size: clamp(1.6rem, 3.5vw, 1.8rem);
        padding: 0.7rem;
        margin-bottom: 0.8rem;
    }
    .section-container {
        padding: 0 12px;
    }
    .event-overlay-content {
        padding: 1rem;
    }
    .event-overlay-content h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    }
    .event-overlay-content .lead,
    .event-overlay-content .details {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }
    .event-overlay-content .details i {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }
}
