/* Main Section Container */
.poker-events-section:not(:first-child) {
    padding-top: 40px;
}
.poker-events-section {
    display: flex;
    flex-direction: column;
}

/* Optional: General container styling */
.poker-events-section .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

/* Section Title */
.poker-events-section.live .section-title-wrapper {
    border-bottom: 8px solid #F73535;
}

.poker-events-section.upcoming .section-title-wrapper {
    border-bottom: 8px solid #FFFFFF;
}

.poker-events-section.recent .section-title-wrapper {
    border-bottom: 8px solid #316EF7;
}

.poker-events-section.past .section-title-wrapper {
    border-bottom: 8px solid #173476;
}


/* Per section styling */
.poker-events-section.live {
    color: #09214C;
}

.poker-events-section.upcoming {
    color: #FFFFFF;
}

.poker-events-section.recent {
    color: #09214C;
}

.poker-events-section.past {
    color: #FFFFFF;
}

.poker-events-section.live .section-title {
    background-color: #F73535;
    color: #FFFFFF;
}

.poker-events-section.upcoming .section-title {
    background-color: #FFFFFF;
    color: #173476;
}

.poker-events-section.recent .section-title {
    background-color: #316EF7;
    color: #FFFFFF;
}

.poker-events-section.past .section-title {
    background-color: #173476;
    color: #FFFFFF;
}

.poker-events-section .section-title {
    display: inline;
    padding: 8px 24px 0px 24px;
    border-radius: 8px 8px 0px 0px;
    font-family: "bebas-neue-pro", montserrat;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 31px;
}

/* List of all events */
.poker-events-section .events-list {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* A single event item wrapper */
.poker-events-section .event-item {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    border-radius: 12px;
}

.poker-events-section .hidden-event {
    display: none;
}

/* Left side: Event image container */
.poker-events-section .event-image {
    display: flex;
    width: 50%;
    height: 282px;
}

.poker-events-section .event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

/* Right side: Event details container */
.poker-events-section.live .event-details {
    background-color: #fff;
}

.poker-events-section.upcoming .event-details {
    background-color: #173476;
}

.poker-events-section.recent .event-details {
    background-color: #F4F4F4;
}

.poker-events-section.past .event-details {
    background-color: #384259;
}

/* Title colors */
.poker-events-section.live .event-title {
    color: #09214C;
}

.poker-events-section.upcoming .event-title {
    color: #FFFFFF;
}

.poker-events-section.recent .event-title {
    color: #09214C;
}

.poker-events-section.past .event-title {
    color: #FFFFFF;
}

.poker-events-section .event-details {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 0 12px 12px 0;
    width: 50%;
}

.poker-events-section .event-title {
    font-family: "bebas-neue-pro", montserrat;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 36px;
    margin: 0;
    padding-bottom: 8px;
}

.poker-events-section .event-description {
    font-family: "Montserrat", montserrat;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.poker-events-section .event-meta {
    display: flex;
    flex-grow: 1;
    align-items: center;
    gap: 30px;
}

.poker-events-section .event-meta-item {
    display: flex;
    align-items: center;
    /*gap: 10px;*/
}

.poker-events-section .event-meta .uppercase {
    text-transform: uppercase;
}

.poker-events-section .event-meta-item .event-meta-icon {
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    vertical-align: middle;
}

.poker-events-section .event-meta-item .event-meta-text {
    font-family: "Montserrat", montserrat;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

/* "Read more" link container */
.poker-events-section .event-link {

}

.poker-events-section .event-link a {
    display: block;
    font-family: "Montserrat", montserrat;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    line-height: 16px;
    color: #fff;
    text-transform: uppercase;

    background-color: #316EF7;
    padding: 12px 0px 12px 0px;
    width: 100%;
    border-radius: 6px;
    text-align: center;
}

/* Fallback text for when no URL is available */
.poker-events-section .more-soon {
    border-top: 2px solid #316EF7;
    padding-top: 24px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat", montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}
.poker-events-section .load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}
.poker-events-section .load-more-button {
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat", montserrat;
    font-weight: 700;
    padding: 12px 16px;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
}

.poker-events-section .load-more-button:hover {
    background: none;
}

.poker-events-section .load-more-button.category-style {
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 0;
    border-radius: 0;

}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 768px) {
    .poker-events-section .event-image {
        width: 40%;
    }

    .poker-events-section .event-details {
        padding: 16px;
        width: 60%;
    }

    .poker-events-section .event-meta {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        justify-content: center;
    }
    .poker-events-section .event-link a {
        font-size: 14px;
    }

    .poker-events-section .more-soon {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .poker-events-section .section-title {
        font-size: 32px;
    }
    .poker-events-section .event-item {
        flex-direction: column;
        height: auto;
    }

    .poker-events-section .event-image {
        width: 100%;
        height: auto;
    }

    .poker-events-section .event-image img {
        border-radius: 12px 12px 0 0;
    }

    .poker-events-section .event-details {
        width: 100%;
        border-radius: 0 0 12px 12px;
        padding: 16px;
    }

    .poker-events-section .event-meta {
        flex-direction: column;
        flex-grow: initial;
        gap: 0;
        align-items: flex-start;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .poker-events-section .event-link a {
        font-size: 14px;
    }

    .poker-events-section .more-soon {
        font-size: 14px;
    }


}