/* style.css */

/* --- FONT LOADING --- */
@font-face {
    font-family: 'Krafton';
    src: url('sources/KRAFTON_FONT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fafafa;
    font-family: 'Krafton', sans-serif;
    color: #111111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* --- COMMON UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    flex: 1;
    width: 100%;
}

.container-narrow {
    max-width: 1000px;
}

.section-spacer {
    margin: 50px 0 30px;
    border-top: 1px solid #e5e5e5;
    padding-top: 0;
}

/* Hyperlinks inside text paragraphs */
.link-text {
    color: #111;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 600;
}

.link-text:hover {
    background-color: #f0f0f0;
    text-decoration: none;
}

/* =========================================
   HOME PAGE STYLES
   ========================================= */

/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    margin-bottom: 60px;
    padding: 30px 0;
}

.hero-image-wrapper {
    flex-shrink: 0;
}

.hero-image {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.hero-text-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Krafton', sans-serif;
    font-size: 4rem;
    font-weight: normal;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
}

.section-label {
    font-family: 'Krafton', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* --- INFO GRID (Home) - NO CARDS, PLAIN TEXT --- */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    width: 100%;
}

.info-section {
    text-align: left;
}

.section-description {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

/* --- LINKS GRID (Home) --- */
.links-section {
    margin-bottom: 60px;
}

.links-section .section-label {
    margin-bottom: 25px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 120px;
}

.link-card.main-link {
    background: #f8f8f8;
    border-color: #d0d0d0;
}

.link-card svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    fill: #333;
    transition: fill 0.3s ease;
}

.link-card:hover {
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.link-card:hover svg {
    fill: #000;
}

/* --- DB GRID (Home) --- */
.db-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.db-card-main {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* grid-column: span 2; Removed to make it squarish */
}

.db-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.db-card-main h3 {
    font-family: 'Krafton', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.db-card-main p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.db-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 2px solid #fff;
    align-self: flex-start;
    padding-bottom: 3px;
}

.db-card-dummy {
    background: #ffffff;
    border: 2px dashed #e0e0e0;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
    color: #aaa;
}

.db-card-dummy h4 {
    font-family: 'Krafton', sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 10px;
    color: #999;
    text-transform: uppercase;
}

.coming-soon-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f0f0f0;
    color: #999;
    padding: 6px 12px;
    border-radius: 20px;
    margin-top: 10px;
}

/* --- FOOTER (Shared) --- */
.site-footer {
    margin-top: auto;
    padding: 60px 20px 40px;
    text-align: center;
    background: transparent;
    border-top: none;
}

.footer-brand {
    font-family: 'Krafton', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 15px;
    color: #111;
    display: block;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 0.85rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   FPS PAGE STYLES
   ========================================= */

/* --- BACK NAVIGATION --- */
.back-nav {
    margin-bottom: 30px;
}

.back-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: #000;
    transform: translateX(-3px);
}

/* --- HEADER --- */
.fps-header {
    margin-bottom: 40px;
}

.fps-title {
    font-family: 'Krafton', sans-serif;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #111;
}

.fps-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    line-height: 1.6;
}

/* --- FILTER BAR (FPS) --- */
.filter-bar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.select-wrapper {
    position: relative;
    min-width: 250px;
    width: 100%;
    max-width: 400px;
}

.filter-bar select {
    width: 100%;
    padding: 14px 45px 14px 20px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    color: #111111;
    border-radius: 8px;
    font-family: 'Krafton', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-bar select:hover {
    border-color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-bar select:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.filter-bar select option {
    background-color: #ffffff;
    color: #111111;
    padding: 10px;
}

.chevron-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: #111;
    pointer-events: none;
}

/* --- MOBILE CARDS (FPS) --- */
.mobile-cards {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.device-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.device-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #000;
}

.card-header {
    margin-bottom: 5px;
    padding-bottom: 0;
    border-bottom: none;
}

.card-device-name {
    font-family: 'Krafton', sans-serif;
    font-size: 1.1rem;
    font-weight: normal;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fps-badges {
    display: flex;
    gap: 10px;
}

.fps-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid #eee;
}

.badge-label {
    font-weight: 600;
    color: #555;
}

.badge-value {
    font-weight: 700;
}

.badge-value .status-yes {
    color: #00aa00;
}

.badge-value .status-no {
    color: #cc0000;
}

.card-footer-compact {
    margin-top: 5px;
    font-size: 0.75rem;
    color: #999;
    text-align: right;
}

.card-verifier {
    font-style: italic;
}


/* --- TABLE STYLES (FPS) - Desktop Only --- */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    background: #fff;
    display: block;
    /* Shown by default */
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

th {
    text-align: left;
    padding: 18px 20px;
    border-bottom: 2px solid #111;
    font-family: 'Krafton', sans-serif;
    font-size: 1rem;
    color: #000;
    font-weight: normal;
    letter-spacing: 0.5px;
    background: #fafafa;
    text-transform: uppercase;
}

td {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    color: #333;
    font-size: 0.95rem;
    background: #fff;
}

tr:last-child td {
    border-bottom: none;
}

tbody tr:hover td {
    background-color: #f8f8f8;
}

.device-name {
    font-weight: 700;
    color: #000;
}

.verifier {
    color: #888;
    font-size: 0.85rem;
    text-align: right;
}

/* --- TEXT STATUS (Yes/No) --- */
.status-yes {
    color: #00aa00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.status-no {
    color: #cc0000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.note {
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
    text-transform: none;
    margin-left: 4px;
}

/* --- FOOTER (FPS) --- */
.db-footer {
    margin-top: 40px;
    padding: 30px 0;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.7;
}

.db-footer p {
    margin-bottom: 10px;
}

.db-footer strong {
    color: #111;
}

/* =========================================
   PATCH NOTES GRID & MODAL
   ========================================= */

.patch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.patch-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.patch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #000;
}

.patch-version {
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.patch-date {
    font-family: 'Krafton', sans-serif;
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.2;
}

.patch-summary {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.patch-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    border-bottom: 2px solid #111;
    align-self: flex-start;
    padding-bottom: 2px;
}

/* --- MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow-y: auto;
    /* Padding is handled by the inner content container now */
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #555;
    z-index: 10;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #000;
}

/* =========================================
   PATCH NOTES FULL VIEW STYLES
   ========================================= */

.patch-full-view {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
}

.patch-header-main {
    margin-bottom: 40px;
    border-bottom: 2px solid #111;
    padding-bottom: 20px;
}

.patch-title-main {
    font-family: 'Krafton', sans-serif;
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.2;
}

.patch-period {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.patch-section-block {
    margin-bottom: 50px;
}

.patch-section-title {
    font-family: 'Krafton', sans-serif;
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 20px;
    border-left: 5px solid #111;
    padding-left: 15px;
    text-transform: uppercase;
}

.patch-subsection-title {
    font-family: 'Krafton', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.patch-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.patch-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid #eee;
}

.patch-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.patch-item h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
    margin-bottom: 5px;
    text-decoration: underline;
}

.patch-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.patch-list-items {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.patch-list-items li {
    margin-bottom: 5px;
    color: #555;
    font-size: 0.95rem;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Tablet (900px and below) */
@media (max-width: 900px) {
    .container {
        padding: 30px 20px 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-card {
        min-height: auto;
    }

    .db-card-main {
        grid-column: span 1;
    }

    .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .patch-full-view {
        padding: 25px;
    }
}

/* Mobile (700px and below) - CRITICAL BREAKPOINT FOR FPS PAGE */
@media (max-width: 700px) {

    /* Switch to card view for devices */
    .mobile-cards {
        display: flex !important;
    }

    .table-wrapper {
        display: none !important;
    }

    .fps-title {
        font-size: 2rem;
    }

    .section-label {
        font-size: 1.3rem;
    }

    .select-wrapper {
        max-width: 100%;
    }

    .patch-title-main {
        font-size: 2rem;
    }

    .patch-section-title {
        font-size: 1.5rem;
    }

    /* --- MOBILE HERO OPTIMIZATION --- */
    .hero-section {
        flex-direction: row;
        /* Side by side */
        text-align: left;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
        padding: 10px 0;
    }

    .hero-image {
        width: 100px;
        /* Smaller logo to fit side-by-side */
        height: 100px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .hero-title {
        font-size: 1.5rem;
        /* Adjusted for side-by-side layout */
        line-height: 1.3;
    }

    /* --- MOBILE INFO GRID OPTIMIZATION --- */
    .info-grid {
        gap: 35px;
        margin-bottom: 30px;
    }

    .info-section {
        text-align: left;
        /* Left align as requested */
        padding: 0;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* --- MOBILE MODAL (BOTTOM SHEET STYLE) --- */
    .modal-content {
        width: 100%;
        height: 85vh;
        /* Bottom sheet height */
        max-height: 85vh;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        /* Rounded top corners only */
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .modal-overlay.active .modal-content {
        transform: translateY(0);
    }

    .modal-close {
        top: 15px;
        right: 15px;
        background: #f0f0f0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
}

/* Small Mobile (600px and below) */
@media (max-width: 600px) {

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-image {
        width: 140px;
        height: 140px;
    }

    .section-label {
        font-size: 1.2rem;
    }

    .info-card {
        padding: 25px;
    }

    .card-description {
        font-size: 0.95rem;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .link-card {
        padding: 15px 10px;
        font-size: 0.8rem;
        min-height: 100px;
    }

    .link-card svg {
        width: 24px;
        height: 24px;
    }

    .db-grid {
        grid-template-columns: 1fr;
    }

    .db-card-main {
        min-height: 180px;
        padding: 20px;
    }

    .db-card-main h3 {
        font-size: 1.4rem;
    }

    .db-card-dummy {
        min-height: 160px;
    }

    .db-card-dummy h4 {
        font-size: 1.1rem;
    }

    .fps-title {
        font-size: 1.6rem;
    }

    .filter-bar select {
        padding: 12px 40px 12px 16px;
        font-size: 0.9rem;
    }

    .card-device-name {
        font-size: 1.1rem;
    }

    .device-card {
        padding: 18px;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-text {
        font-size: 0.75rem;
    }

    .patch-full-view {
        padding: 20px 15px;
        border: none;
        background: transparent;
    }

    .patch-item {
        padding-left: 15px;
    }

    .patch-card {
        padding: 20px;
        min-height: 180px;
    }

    .patch-date {
        font-size: 1.3rem;
    }
}

/* Extra Small (400px and below) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}

/* --- EVENTS PAGE STYLES --- */
.event-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: 5px solid #e67e22; /* Orange accent */
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    /* Removed colored shadow, using standard neutral shadow */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
    border-color: #e67e22;
}

.event-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.platform-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between multiple icons */
}

.platform-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.event-platform {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
}

.event-status {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 4px;
}

.event-status::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Active status - Green */
.event-status-active {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.event-status-active::before {
    background: #27ae60;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Ended status - Red/Gray */
.event-status-ended {
    color: #95a5a6;
    background: rgba(149, 165, 166, 0.1);
}

.event-status-ended::before {
    background: #95a5a6;
}

/* Ended event card styling */
.event-card.event-ended {
    border-left-color: #95a5a6;
    opacity: 0.85;
}

.event-card.event-ended:hover {
    border-color: #95a5a6;
}

.event-card.event-ended .event-read-more {
    color: #666;
    border-color: #666;
}

.event-card.event-ended:hover .event-read-more {
    color: #444;
    border-color: #444;
}

.event-title {
    font-family: 'Krafton', sans-serif;
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.2;
}

.event-dates {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-summary {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.event-read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e67e22;
    text-transform: uppercase;
    border-bottom: 2px solid #e67e22;
    align-self: flex-start;
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.event-card:hover .event-read-more {
    color: #d35400;
    border-color: #d35400;
}
