@charset "UTF-8";

/* ===================================
   イベントヒーロー (Hero)
   =================================== */
.event-hero {
    width: 100%;
    background-color: #fde8d8;
    padding: 60px 20px 40px;
}

.event-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.event-hero-icon {
    width: 100px;
    flex-shrink: 0;
}

.event-hero-en {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.3em;
    color: #FF6B4A;
    margin: 0 0 6px;
}

.event-hero-title {
    font-size: 36px;
    font-weight: bold;
    color: #516881;
    margin: 0 0 14px;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.event-hero-sub {
    font-size: 15px;
    color: #516881;
    line-height: 1.9;
    margin: 0;
}

/* ===================================
   イベント一覧セクション (Event List)
   =================================== */
.event-list-section {
    width: 100%;
    background-color: #fff;
    padding: 70px 20px 100px;
    position: relative;
    overflow: hidden;
}

/* 国旗共通 */
.event-list-section .msg-flag {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.event-list-section .msg-flag .fi {
    display: block;
    width: 52px;
    height: 39px;
    border-radius: 5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.event-list-section .msg-flag--l1 .fi { transform: rotate(-10deg); }
.event-list-section .msg-flag--l2 .fi { transform: rotate(-5deg);  }
.event-list-section .msg-flag--l3 .fi { transform: rotate(-13deg); }
.event-list-section .msg-flag--l4 .fi { transform: rotate(-7deg);  }
.event-list-section .msg-flag--r1 .fi { transform: rotate(9deg);   }
.event-list-section .msg-flag--r2 .fi { transform: rotate(5deg);   }
.event-list-section .msg-flag--r3 .fi { transform: rotate(12deg);  }
.event-list-section .msg-flag--r4 .fi { transform: rotate(4deg);   }

@keyframes flagFloat {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.event-list-section .msg-flag.is-visible {
    opacity: 1;
    animation: flagFloat 4s ease-in-out infinite;
}

.event-list-section .msg-flag--l1 { left: 3%;  top: 8%;  transition-delay: 0s;    }
.event-list-section .msg-flag--l2 { left: 6%;  top: 32%; transition-delay: 0.15s; }
.event-list-section .msg-flag--l3 { left: 2%;  top: 58%; transition-delay: 0.3s;  }
.event-list-section .msg-flag--l4 { left: 7%;  top: 80%; transition-delay: 0.45s; }
.event-list-section .msg-flag--r1 { right: 3%;  top: 12%; transition-delay: 0.1s;  }
.event-list-section .msg-flag--r2 { right: 7%;  top: 38%; transition-delay: 0.25s; }
.event-list-section .msg-flag--r3 { right: 2%;  top: 62%; transition-delay: 0.4s;  }
.event-list-section .msg-flag--r4 { right: 6%;  top: 84%; transition-delay: 0.55s; }

.event-list-section .msg-flag--l1.is-visible { animation-delay: 0s;   }
.event-list-section .msg-flag--l2.is-visible { animation-delay: 0.5s; }
.event-list-section .msg-flag--l3.is-visible { animation-delay: 1.0s; }
.event-list-section .msg-flag--l4.is-visible { animation-delay: 0.3s; }
.event-list-section .msg-flag--r1.is-visible { animation-delay: 0.7s; }
.event-list-section .msg-flag--r2.is-visible { animation-delay: 1.2s; }
.event-list-section .msg-flag--r3.is-visible { animation-delay: 0.4s; }
.event-list-section .msg-flag--r4.is-visible { animation-delay: 0.9s; }

@media (max-width: 768px) {
    .event-list-section .msg-flag .fi { width: 30px; height: 22px; }
    .event-list-section .msg-flag--l1 { left: -8px; }
    .event-list-section .msg-flag--l2 { left: -4px; }
    .event-list-section .msg-flag--l3 { left: -8px; }
    .event-list-section .msg-flag--l4 { left: -4px; }
    .event-list-section .msg-flag--r1 { right: -8px; }
    .event-list-section .msg-flag--r2 { right: -4px; }
    .event-list-section .msg-flag--r3 { right: -8px; }
    .event-list-section .msg-flag--r4 { right: -4px; }
}

@media (max-width: 600px) {
    .event-list-section .msg-flag { display: none; }
}

/* カテゴリフィルター */
.event-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 22px;
    border: 2px solid #9fd9f6;
    background-color: #fff;
    color: #516881;
    font-size: 13px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background-color 0.2s, color 0.2s, transform 0.15s;
}

.filter-btn:hover {
    background-color: #e5f6fd;
}

.filter-btn--active {
    background-color: #9fd9f6;
    color: #516881;
    border-color: #9fd9f6;
}

/* イベントカードグリッド（縦1列） */
.event-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto 20px;
}

/* ===================================
   イベントカード (Event Card)
   =================================== */
.event-card {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(81, 104, 129, 0.15);
    display: flex;
    flex-direction: row;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.25s;
    cursor: pointer;
}


/* サムネイル */
.event-card-thumb {
    position: relative;
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.event-card:hover .event-card-thumb img {
    transform: scale(1.05);
}

/* カテゴリバッジ */
.event-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.06em;
    z-index: 1;
}

.badge-culture-class { background-color: #30b9bf; }
.badge-visit-class   { background-color: #fe4c7f; }
.badge-collab        { background-color: #f87a6d; }
.badge-cocosalon     { background-color: #516881; }

/* 日付バッジ */
.event-date-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    min-width: 54px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.edb-month {
    background-color: #fe4c7f;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 0;
}

.edb-day {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    padding: 7px 10px 2px;
}

.edb-week {
    font-size: 11px;
    color: #fe4c7f;
    font-weight: bold;
    padding: 0 10px 7px;
    margin-top: 0;
}

/* カード本文 */
.event-card-body {
    padding: 22px 28px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.event-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.4;
}

.event-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
    margin: 0 0 12px;
}

.event-card-location svg {
    color: #9fd9f6;
    flex-shrink: 0;
}

.event-card-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px;
    flex: 1;
}

/* カード内ボタン */
.event-card-btn {
    display: inline-flex;
    align-items: center;
    background-color: #f5f29f;
    border-radius: 20px;
    padding: 8px 18px 8px 4px;
    transition: opacity 0.15s;
    align-self: flex-start;
    color: #333;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.event-card-btn img {
    height: 32px;
    width: auto;
    margin-right: 6px;
}

.event-card-btn:hover {
    opacity: 0.8;
}

/* ===================================
   イベントページ専用：ヘッダーボタン active
   =================================== */
.btn-event--active {
    background-color: #d64f43;
}

/* ===================================
   過去のイベントセクション (Past Events)
   =================================== */
.past-events-section {
    width: 100%;
    background-color: #fde8d8;
    padding: 70px 20px 90px;
}

.past-events-inner {
    max-width: 860px;
    margin: 0 auto;
}

/* 見出し */
.past-events-heading {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 52px;
}

.past-events-icon {
    width: 72px;
    flex-shrink: 0;
}

.past-events-en {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.3em;
    color: #FF6B4A;
    margin: 0 0 4px;
}

.past-events-title {
    font-size: 28px;
    font-weight: bold;
    color: #1e3a5a;
    margin: 0;
    letter-spacing: 0.05em;
}

/* 年グループ */
.past-year-group {
    margin-bottom: 36px;
}

.past-year-label {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.15em;
    color: #fff;
    background-color: #516881;
    padding: 4px 18px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* イベントリスト */
.past-event-list {
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 4px 4px 0 rgba(81, 104, 129, 0.2);
    margin: 0;
    padding: 0;
}

.past-event-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid #f0f6fa;
    transition: background-color 0.15s;
}

.past-event-item:last-child {
    border-bottom: none;
}

.past-event-item:hover {
    background-color: #f7fbfe;
}

.past-event-date {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
    width: 56px;
}

/* バッジはevent-cat-badgeを再利用（position: staticに上書き） */
.past-event-item .event-cat-badge {
    position: static;
    flex-shrink: 0;
}

.past-event-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    flex: 1;
}

.past-event-place {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===================================
   チケット風カード
   =================================== */
.event-card--ticket {
    overflow: visible;
}

/* ノッチ（ミシン目の丸穴） */
.event-card--ticket::before,
.event-card--ticket::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    left: 89px;
    z-index: 2;
}
.event-card--ticket::before { top: -11px; }
.event-card--ticket::after  { bottom: -11px; }

/* 日付ブロック（カテゴリ色） */
.ticket-date {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
    border-radius: 18px 0 0 18px;
    position: relative;
}

.event-card[data-cat="visit-class"]   .ticket-date { background-color: #fe4c7f; }
.event-card[data-cat="collab"]        .ticket-date { background-color: #f87a6d; }
.event-card[data-cat="culture-class"] .ticket-date { background-color: #30b9bf; }
.event-card[data-cat="cocosalon"]     .ticket-date { background-color: #516881; }

/* ミシン目ライン */
.ticket-date::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 16px;
    bottom: 16px;
    width: 0;
    border-right: 3px dashed rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.td-date {
    display: flex;
    align-items: stretch;
    margin-bottom: 6px;
    line-height: 1;
}

.td-month-num {
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.85);
    align-self: flex-start;
    padding-top: 2px;
}

.td-slash {
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
    align-self: center;
    margin: 0 1px;
    line-height: 1;
}

.td-day-num {
    font-size: 44px;
    font-weight: bold;
    color: #fff;
    align-self: flex-end;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.td-date--multi {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}

.td-multi-line1 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.td-multi-line2 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.td-month-slash {
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
}

.td-date--multi .td-day-num {
    font-size: 28px;
    letter-spacing: -0.02em;
}

.td-date--multi .td-day-sub {
    font-size: 28px;
    vertical-align: bottom;
}

.td-day-sub {
    font-size: 18px;
    letter-spacing: 0;
    vertical-align: bottom;
}

.td-week {
    font-size: 14px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.85);
}

/* 本文エリア */
.ticket-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ticket-header .event-cat-badge {
    position: static;
    flex-shrink: 0;
}

.ticket-desc-inline {
    font-size: 13px;
    color: #888;
}

.ticket-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.ticket-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 4px;
}

.ticket-footer .accordion-toggle {
    flex-shrink: 0;
}

.ticket-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
    margin: 0;
}

.ticket-location svg {
    color: #9fd9f6;
    flex-shrink: 0;
}

/* 右端の写真 */
.ticket-photo {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0 18px 18px 0;
}

.ticket-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   イベントカード レスポンシブ
   =================================== */
@media (max-width: 640px) {
    .event-card {
        flex-direction: column;
    }
    .event-card-thumb {
        width: 100%;
        height: 160px;
    }
    .event-card-body {
        padding: 18px 18px 20px;
    }
}

/* ===================================
   過去イベント レスポンシブ
   =================================== */
@media (max-width: 600px) {
    .past-event-item {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 4px 10px;
        padding: 12px 16px;
        align-items: center;
    }

    .past-event-date {
        grid-column: 1;
        grid-row: 1;
    }

    .past-event-place {
        grid-column: 2;
        grid-row: 1;
        white-space: normal;
        width: auto;
        padding-left: 0;
        text-align: right;
        font-size: 12px;
    }

    .past-event-item .event-cat-badge {
        grid-column: 1;
        grid-row: 2;
    }

    .past-event-title {
        grid-column: 2;
        grid-row: 2;
    }
}

/* ===================================
   ステータスバッジ
   =================================== */
.ticket-footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ticket-fee {
    font-size: 12px;
    color: #888;
}

.ticket-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

/* 受付中 */
.ticket-status--open {
    background-color: #e6f8ed;
    color: #2a8a56;
    border: 1.5px solid #2a8a56;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2a8a56;
    flex-shrink: 0;
    animation: status-pulse 1.6s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.8); }
}

/* XX/XX 受付開始 */
.ticket-status--upcoming {
    background-color: #e8f6fd;
    color: #1a6fa0;
    border: 1.5px solid #9fd9f6;
}

.status-date {
    font-size: 13px;
}

/* 仮予約受付中 */
.ticket-status--provisional {
    background-color: #fff4e6;
    color: #c46a00;
    border: 1.5px solid #f0a040;
}

.status-dot--provisional {
    background-color: #f0a040;
    animation: status-pulse 1.6s ease-in-out infinite;
}

/* 満席 */
.ticket-status--full {
    background-color: #f2f2f2;
    color: #999;
    border: 1.5px solid #ccc;
    text-decoration: line-through;
    text-decoration-color: #bbb;
}

.ticket-status--closed {
    background-color: #f2f2f2;
    color: #999;
    border: 1.5px solid #ccc;
}

/* ===================================
   チケットカード：位置指定（ノッチ用）
   =================================== */
.event-card--ticket {
    position: relative;
}

/* ===================================
   アコーディオン
   =================================== */
.event-card-wrapper {
    display: flex;
    flex-direction: column;
}

.event-accordion {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    background-color: #f7fbfe;
    border-radius: 0 0 18px 18px;
    box-shadow: 5px 5px 0 rgba(81, 104, 129, 0.15);
}

.event-accordion.is-open {
    max-height: 700px;
    opacity: 1;
}

@media (max-width: 640px) {
    .event-accordion.is-open {
        max-height: 1400px;
    }
}

.event-accordion-inner {
    padding: 28px 32px 24px;
}

.acc-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.acc-benefits {
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.acc-benefits-title {
    font-size: 13px;
    font-weight: bold;
    color: #516881;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.acc-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acc-benefits-list li {
    font-size: 14px;
    color: #1e3a5a;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.acc-benefits-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #9fd9f6;
    font-size: 11px;
    top: 3px;
}

.acc-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.acc-detail-table th,
.acc-detail-table td {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid #ddeef7;
    text-align: left;
    vertical-align: top;
}

.acc-detail-table th {
    width: 90px;
    color: #516881;
    font-weight: bold;
    white-space: nowrap;
}

.acc-detail-table td {
    color: #333;
}

.acc-address {
    font-size: 12px;
    color: #888;
}

.acc-free-badge {
    display: inline-block;
    background-color: #9fd9f6;
    color: #1e3a5a;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 14px;
    border-radius: 10px;
}

.acc-gift-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border: 1.5px dashed #f4b942;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 16px;
}

.acc-gift-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.acc-gift-text {
    font-size: 14px;
    color: #7a5500;
    line-height: 1.7;
    margin: 0;
}

.acc-gift-period {
    font-weight: bold;
    color: #e07b00;
}

.acc-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.acc-btns .event-card-btn {
    align-self: center;
}

.acc-external-note {
    font-size: 11px;
    color: #aaa;
}

/* アコーディオントグルボタン */
.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #9fd9f6;
    background-color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.accordion-toggle:hover {
    background-color: #e8f6fd;
}

.accordion-toggle[aria-expanded="true"] {
    background-color: #9fd9f6;
    border-color: #9fd9f6;
}

.accordion-toggle .acc-arrow {
    color: #516881;
    transition: transform 0.3s ease;
}

.accordion-toggle[aria-expanded="true"] .acc-arrow {
    transform: rotate(180deg);
}

/* アコーディオン レスポンシブ */
@media (max-width: 640px) {
    .event-accordion-inner {
        padding: 20px 16px 18px;
    }

    .acc-detail-table th {
        width: 72px;
    }
}

/* ===================================
   チケットカード レスポンシブ
   =================================== */
@media (max-width: 640px) {
    /* ノッチ非表示 */
    .event-card--ticket::before,
    .event-card--ticket::after {
        display: none;
    }

    /* overflow:visible を解除 */
    .event-card--ticket {
        overflow: hidden;
    }

    /* 日付ブロックを横帯に変更 */
    .ticket-date {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 14px 20px;
        border-radius: 18px 18px 0 0;
    }

    /* ミシン目ライン非表示 */
    .ticket-date::after {
        display: none;
    }

    .td-date {
        margin-bottom: 0;
    }

    /* 順序：日付(1) → 写真(2) → 本文(3) */
    .ticket-date  { order: 1; }
    .ticket-photo { order: 2; }
    .ticket-body  { order: 3; }

    /* 写真を日付直下に全幅表示 */
    .ticket-photo {
        width: 100%;
        height: 150px;
        border-radius: 0;
    }

    /* 本文が最下部になるので下角を丸める */
    .ticket-body {
        border-radius: 0 0 18px 18px;
    }
}

/* ===================================
   過去イベント レスポンシブ（追加）
   =================================== */
@media (max-width: 600px) {
    .past-events-section {
        padding: 48px 16px 60px;
    }

    .past-events-heading {
        gap: 16px;
        margin-bottom: 36px;
    }

    .past-events-icon {
        width: 52px;
    }

    .past-events-title {
        font-size: 22px;
    }
}

/* ===================================
   ヒーロー レスポンシブ
   =================================== */
@media (max-width: 768px) {
    .event-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .event-hero-icon {
        width: 72px;
    }

    .event-hero-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .event-hero-title {
        font-size: 22px;
    }

    .event-hero {
        padding: 48px 20px 32px;
    }
}
