/**
 * Parrot CTFs Events - Shared Stylesheet
 * Extracted from inline styles across event pages
 * Used by: event_list, ctf, scoreboard, dashboard/*, onboard
 */

/* ============================================================
   CSS VARIABLES (override header-2.php defaults if needed)
   ============================================================ */
:root {
    --color-primary: #ba5663;
    --color-primary-hover: #d4687a;
    --color-bg-primary: #142b49;
    --color-bg-dark: #0a1628;
    --color-bg-card: rgba(26, 55, 93, 0.5);
    --color-bg-card-hover: rgba(26, 55, 93, 0.7);
    --color-bg-gradient: linear-gradient(135deg, #0a1628 0%, #142b49 50%, #1a375d 100%);
    --color-bg-surface: #1a375d;
    --color-bg-deep: #0a1428;
    --color-text: #d5d9d8;
    --color-text-muted: #8a8d93;
    --color-text-bright: #e0e0e0;
    --color-border: #525252;
    --color-border-subtle: rgba(82, 82, 82, 0.4);
    --color-shadow: #081936;
    --color-success: #34d399;
    --color-danger: #ef4444;
    --color-info: #60a5fa;
    --color-gold: #FFD700;
    --color-silver: #C0C0C0;
    --color-bronze: #CD7F32;
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.custom-gradient-background {
    background: var(--color-bg-gradient);
}

.no-bg {
    background: transparent;
}

.new-white {
    color: var(--color-text);
}


/* ============================================================
   PARROT BETA CARDS (shared component)
   ============================================================ */
.parrot-beta {
    border-radius: 10px;
    box-shadow: 8px 7px 15px var(--color-shadow);
    border: 1px solid var(--color-border);
    text-decoration: none;
    background-color: var(--color-bg-primary);
}

.parrot-beta-flag {
    border-radius: 10px;
    box-shadow: 8px 7px 15px var(--color-shadow);
    text-decoration: none;
    background-color: var(--color-bg-surface);
    border-right: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-top: 2px solid var(--color-border);
}


/* ============================================================
   EVENT CARDS (event_list + dashboard/scoreboard)
   ============================================================ */
.event-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    border-color: rgba(186, 86, 99, 0.5);
    background: var(--color-bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.event-card-logo {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(20, 43, 73, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(82, 82, 82, 0.3);
}

.event-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.event-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-bright);
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-company {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
}

.event-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.35rem;
}

.event-card-meta i {
    color: var(--color-primary);
    width: 14px;
    text-align: center;
}

.event-card-actions {
    margin-top: auto;
    padding-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-enroll {
    flex: 1;
    padding: 0.55rem;
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-enroll:hover {
    background: var(--color-primary-hover);
    color: #fff;
    text-decoration: none;
}

.btn-info-link {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-subtle);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-info-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}


/* ============================================================
   BADGES (Live, Upcoming, Past, Ended)
   ============================================================ */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.live-badge .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-danger);
    animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.upcoming-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-info);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.past-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}


/* ============================================================
   SCOREBOARD / LEADERBOARD
   ============================================================ */
.container-flag {
    width: fit-content;
    height: 450px;
    padding: 2px;
    background: var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 50% 100%, 0 80%);
}

.flag {
    width: 300px;
    height: 440px;
    margin: auto;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 50% 100%, 0 80%);
    background: #22252A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scoreboard {
    background-color: var(--color-primary);
    border-radius: 5px;
}

.score-content {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    width: 300px;
    height: 100px;
}

.rank {
    border: 1px solid var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    font-size: 20px;
}

.rank-other {
    border: 1px solid var(--color-primary);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    font-size: 20px;
    border-radius: 5px 0 0 0;
}

.host {
    padding-inline: 4px;
    background-color: var(--color-primary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 12px;
    color: aliceblue;
}

.country-avatar,
.icon {
    width: 30px;
    height: 30px;
}

.avatar-team {
    width: 80px;
    height: 80px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th,
.custom-table td {
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-primary);
    padding: 8px;
    font-size: 18px;
}

.custom-table th {
    border-radius: 10px;
    box-shadow: 8px 7px 15px var(--color-shadow);
    border: 1px solid var(--color-border);
    text-decoration: none;
    background-color: var(--color-bg-primary);
}


/* ============================================================
   CTF EVENT DETAIL PAGE
   ============================================================ */
.counting-card {
    background-color: var(--color-bg-primary);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100px;
    box-shadow: 8px 7px 15px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.hacking-card {
    background-color: var(--color-bg-primary);
    box-shadow: 8px 7px 15px var(--color-shadow);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    height: 150px;
    width: 150px;
    border: 1px solid var(--color-border);
}

.banner-prize {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    background: #353639;
}

/* Timeline */
.timeline {
    position: relative;
    list-style: none;
    padding: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-right: 15px;
}

.timeline-line {
    width: 2px;
    background-color: var(--color-primary);
    flex: 1;
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.timeline-content {
    flex: 1;
    background-color: var(--color-bg-primary);
}


/* ============================================================
   CHALLENGES DASHBOARD
   ============================================================ */
.challenges {
    background-color: var(--color-primary);
    border-radius: 5px;
}

.card-analytics {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 150px;
    width: 300px;
}

.card-team {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 200px;
    width: 410px;
    padding-bottom: 10px;
}

.card-challenge {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
}

.chip-unsolved,
.chip-solved {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: aliceblue;
    padding: 10px 25px;
    letter-spacing: 1px;
    width: 170px;
}

.content-challenges {
    background-color: var(--color-bg-surface);
    border-radius: 5px;
}

.spawn-box {
    background-color: #2D3035;
    padding: 20px;
    border: 1px solid var(--color-primary);
}

.points-box {
    background-color: #2D3035;
    padding: 20px;
    border: 1px solid var(--color-primary);
    color: var(--color-text-muted);
}

.challenge-avatar {
    width: 40px;
    height: 40px;
}

.solve-avatar {
    width: 30px;
    height: 30px;
}

.dashboard-img {
    width: 70px;
    height: 70px;
}

.dashboard-avatar {
    width: 200px;
    height: 200px;
}

.partial-text {
    overflow: hidden;
    max-height: 200px;
    transition: max-height 0.5s ease-out;
    border: 1px solid #2D3035;
    padding: 10px;
}

.full-text.hidden {
    display: none;
}

#toggleButton {
    display: block;
    margin-top: 5px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.scrolly {
    overflow-y: auto;
    max-height: 150px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background-color: #f2f2f2;
    border-radius: 10px;
}

.progress {
    display: block;
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 5px;
    width: 50%;
}


/* ============================================================
   TAB NAVIGATION (events dashboard)
   ============================================================ */
.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-primary);
    color: floralwhite;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid var(--color-bg-primary);
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.parrot-nav:hover {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
}

.parrot-nav.active {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-primary);
    border-radius: 5px;
}


/* ============================================================
   EVENT LIST TABS
   ============================================================ */
.event-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.event-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border-subtle);
    background: rgba(26, 55, 93, 0.3);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.event-tab:hover {
    border-color: rgba(186, 86, 99, 0.4);
    color: var(--color-text);
    text-decoration: none;
}

.event-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.event-tab .count {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-tab.active .count {
    background: rgba(255, 255, 255, 0.25);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}


/* ============================================================
   PAGE HEADERS & SECTIONS
   ============================================================ */
.page-header {
    padding-top: 7rem;
    padding-bottom: 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(186, 86, 99, 0.2);
}

.back-link {
    color: var(--color-text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    transition: color 0.2s;
    margin-bottom: 1rem;
}

.back-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted);
}

.empty-state i {
    font-size: 2.5rem;
    opacity: 0.25;
    margin-bottom: 1rem;
    display: block;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(82, 82, 82, 0.5), transparent);
    margin: 2rem 0;
}


/* ============================================================
   WELCOME HERO (dashboard home)
   ============================================================ */
.welcome-hero {
    position: relative;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
}

.welcome-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(186, 86, 99, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #8b3a4a 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(186, 86, 99, 0.3);
}

.welcome-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 0.75rem;
}

.welcome-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}


/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(186, 86, 99, 0.35);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 86, 99, 0.5);
    color: #fff;
    text-decoration: none;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(186, 86, 99, 0.4);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}


/* ============================================================
   ONBOARD WIZARD
   ============================================================ */
.ob-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.ob-header {
    text-align: center;
    margin-bottom: 32px;
}

.ob-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.ob-header p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.92rem;
}

.ob-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(186, 86, 99, 0.1);
    border: 1px solid rgba(186, 86, 99, 0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    color: #e8788a;
    margin-bottom: 20px;
}

.ob-user-badge i {
    font-size: 0.75rem;
}

.ob-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.ob-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: all 0.3s;
}

.ob-step-dot.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.ob-step-dot.completed {
    border-color: var(--color-success);
    background: rgba(52, 211, 153, 0.15);
    color: var(--color-success);
}

.ob-step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.ob-step-line.active {
    background: rgba(186, 86, 99, 0.4);
}

.ob-step-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 6px;
    font-weight: 600;
}

.ob-step-label.active {
    color: rgba(255, 255, 255, 0.7);
}

.ob-card {
    background: rgba(20, 43, 73, 0.8);
    border: 1px solid rgba(186, 86, 99, 0.2);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.ob-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 4px;
}

.ob-card .ob-step-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 24px;
}

.ob-card hr {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 0 0 24px;
}

.ob-card .form-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.85rem;
}

.ob-card .form-control,
.ob-card .form-select,
.ob-card textarea {
    background: rgba(10, 20, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.ob-card .form-control:focus,
.ob-card .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(186, 86, 99, 0.15);
    background: rgba(10, 20, 40, 0.95);
    color: #fff;
}

.ob-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.btn-ob-primary {
    background: linear-gradient(135deg, var(--color-primary), #a94d59);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-ob-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(186, 86, 99, 0.3);
    color: #fff;
}

.btn-ob-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-ob-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.ob-sponsor-item {
    background: rgba(10, 20, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 12px;
}

.ob-review-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ob-review-row:last-child {
    border-bottom: none;
}

.ob-review-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.ob-review-value {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.ob-review-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-success);
    text-align: center;
    margin: 16px 0;
}


/* ============================================================
   FORM OVERRIDES
   ============================================================ */
.form-control:focus {
    background-color: var(--color-bg-surface);
}

.dropdown-menu {
    padding: 10px;
    border-radius: 5px;
    background-color: #34373d;
    border: 1px solid var(--color-primary);
    min-width: 9rem;
}

.dropdown-item {
    border: none;
}

a.nav-link {
    color: var(--color-text);
}


/* ============================================================
   SCOREBOARD GRADIENT
   ============================================================ */
.text-primary {
    color: var(--color-primary) !important;
}

.button-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
    .ob-card {
        padding: 24px 20px;
    }

    .ob-step-line {
        width: 30px;
    }

    .event-card-logo {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }
}
