.event-page-section {
    display: flex;
    flex-direction: column;
    gap: 74px;
    font-family: "Poppins", sans-serif;
    color: #333;
    padding: 74px 0;
}

.event-page-section .event-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.event-page-section .event-group__heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

/* [122324TIN] Add css for subtitle of event group */
.event-page-section .event-group__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: -14px;
    margin-bottom: 20px;
}

.event-page-section .event-group__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (min-width: 480px) and (max-width: 785px) {
    .event-page-section .event-group__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 479px) {
    .event-page-section .event-group__grid {
        /* [123024TIN] Change to 2 column for mobile */
        grid-template-columns: repeat(2, 1fr);
        /* [123024TIN] Reduce gap for mobile */
        gap: 16px;
    }
}

.event-page-section .slider-navigation {
    display: flex;
    gap: 20px;
}

.event-page-section .slider-navigation__arrow {
    background-color: rgba(142, 142, 142, 0.2039215686);
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.event-page-section .slider-navigation__arrow svg {
    width: 24px;
    height: auto;
}

.event-page-section .slider-navigation__arrow:hover {
    background-color: rgba(142, 142, 142, 0.4666666667);
}

.event-page-section .slider-navigation__arrow:disabled,
.event-page-section .slider-navigation__arrow:disabled:hover {
    cursor: default;
    opacity: 0.8;
    background-color: rgba(142, 142, 142, 0.2039215686);
}

.event-page-section .event-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    position: relative;
    color: #41280e;
    text-decoration: none;
    transition: all 0.2s;
    background-color: #fff9f2;
    height: 100%;
}

.event-page-section .event-card--horizontal {
    flex-direction: row;
}

.event-page-section .event-card--white-bg {
    background-color: white;
}

.event-page-section .event-card:hover {
    background-color: #ffe6ca;
}

.event-page-section .event-card__image {
    height: 260px;
    width: 100%;
}

.event-page-section .event-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.event-page-section .event-card__content {
    box-sizing: border-box;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.event-page-section .event-card__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-page-section .event-card__time {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    align-items: center;
    color: #FE9F3A;
}

.event-page-section .event-card__time svg {
    height: 24px;
    width: auto;
}

.event-page-section .event-card__badge {
    background-color: rgb(255, 155, 69);
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    padding: 8px;
    color: white;
    border-radius: 0 8px 0 8px;
}

.event-page-section .event-card__date {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}

.event-page-section .event-card__date__day {
    font-size: 24px;
    font-weight: 600;
}

.event-page-section .event-card__date__month,
.event-page-section .event-card__date__dayweek {
    font-size: 16px;
    font-weight: 500;
}

.event-page-section .event-card__left-panel {
    padding: 8px 26px;
    border-right: 2px dashed #ffb668;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

@media (max-width: 479px) {
    .event-page-section .event-card__left-panel {
        padding: 8px;
    }
}

/* [123024TIN] Add mobile css for event card */
@media (max-width: 479px) {
    .event-page-section .event-card__title {
        font-size: 14px;
		/* [020625TIN] Add word-break, to avoid text overflow */
        word-break: break-all;
    }

    .event-page-section .event-card__time {
        font-size: 13px;
    }

    /* [123024TIN] Hide svg for mobile */
    .event-page-section .event-card__time svg {
        display: none;
    }

    .event-page-section .event-card__image {
        height: 160px;
    }
}

.event-custom-gradient-container {
    background-image: linear-gradient(to top, #f3e7e9 0%, rgb(255, 248, 245) 99%, rgb(255, 248, 245) 100%);
    display: block;
}

.event-hero-section {
    background-color: transparent;
    color: #fff;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    gap: 32px;
    flex-direction: column;
    color: #1f1f1f;
}

/* [121324TIN] add css for hero container title */
.event-page-section .hero-title-container {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    margin: -8px 0 -14px;
}

.event-hero-section .location-label {
    display: flex;
    width: fit-content;
    padding: 16px 24px;
    background-color: rgb(255, 220, 192);
    font-size: 16px;
    /* [121324TIN] Increase font weight */
    font-weight: 600;
    border-radius: 12px;
    color: rgb(45, 22, 0);
    /* [121324TIN] Center content */
    justify-content: center;
    align-items: center;
    gap: 8px;
}


.event-hero-section .hero-event-card {
    display: flex;
    flex-direction: row;
    gap: 0;
    background-color: rgb(255, 220, 192);
    color: #1f1f1f;
    border-radius: 12px;
    padding: 0;
    box-sizing: border-box;
    color: rgb(45, 22, 0);
}

@media (min-width: 480px) and (max-width: 785px) {
    .event-hero-section .hero-event-card {
        position: relative;
    }
}

@media (max-width: 479px) {
    .event-hero-section .hero-event-card {
        position: relative;
    }
}

/* [121324TIN] Change style of instructor vs datetime */
.event-hero-section .hero-event-card__instructor {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
	/* [011625TIN] Change text to capitalize */
    text-transform: capitalize;
}

@media (max-width: 479px) {

    /* [121324TIN] Change style of instructor vs datetime */
    .event-hero-section .hero-event-card__instructor {
        font-size: 18px;
    }
}

.event-hero-section .hero-event-card__image {
    width: 100%;
    height: auto;
    flex: 1;
}

@media (min-width: 480px) and (max-width: 785px) {
    .event-hero-section .hero-event-card__image {
        position: relative;
        top: 0;
        right: 0;
        z-index: 1;
    }
}

@media (max-width: 479px) {
    .event-hero-section .hero-event-card__image {
        position: relative;
        top: 0;
        right: 0;
        z-index: 1;
    }
}

.event-hero-section .hero-event-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.event-hero-section .hero-event-card__text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    flex: 1;
    padding: 50px 40px;
}

@media (min-width: 480px) and (max-width: 785px) {
    .event-hero-section .hero-event-card__text-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 12px;
        background: linear-gradient(to bottom, rgb(255, 220, 192) 0%, rgb(255, 220, 192) 0%, rgba(255, 255, 255, 0) 50%, rgb(255, 220, 192) 99%, rgb(255, 220, 192) 100%);
        color: rgb(45, 22, 0);
    }
}

@media (max-width: 479px) {
    .event-hero-section .hero-event-card__text-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 12px;
        background: linear-gradient(to bottom, rgb(255, 220, 192) 0%, rgb(255, 220, 192) 10%, rgba(255, 255, 255, 0) 50%, rgb(255, 220, 192) 90%, rgb(255, 220, 192) 100%);
        color: rgb(45, 22, 0);
        padding: 16px;
        gap: 8px;
    }
}

.event-hero-section .hero-event-card__title {
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 480px) and (max-width: 785px) {
    .event-hero-section .hero-event-card__title {
        /* [121324TIN] Change margin top to bottom */
        margin-bottom: auto;
        font-weight: 600;
        font-size: 32px;
        /* [121324TIN] Reduce line height */
        line-height: 1.2;
    }
}

@media (max-width: 479px) {
    .event-hero-section .hero-event-card__title {
        /* [121324TIN] Change margin top to bottom */
        margin-bottom: auto;
        font-weight: 600;
        font-size: 24px;
        /* [121324TIN] Reduce line height */
        line-height: 1.2;
    }
}

/* [121324TIN] Change style of instructor vs datetime */
.event-hero-section .hero-event-card__datetime {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    box-sizing: border-box;
    padding: 8px 16px;
    border-radius: 12px;
    background-color: rgb(255, 248, 245);
    gap: 8px;
    width: fit-content;
}

.event-hero-section .hero-event-card__today {
    /* background: linear-gradient(45deg, #ff895e, #a2f5ff); */
    /* [011625TIN] Change color */
    background-color: #FE9F3A;
    color: #ffffff;
    font-weight: 700;
    padding: 4px 8px;
    height: fit-content;
    border-radius: 12px;
    font-size: 28px;
    vertical-align: middle;
    display: inline-block;
}

@media (min-width: 480px) and (max-width: 785px) {

    /* [121324TIN] Change style of instructor vs datetime */
    .event-hero-section .hero-event-card__datetime {
        padding: 0;
        background-color: transparent;
        font-size: 24px;
    }

    .event-hero-section .hero-event-card__today {
        border-radius: 12px 0;
        font-size: 16px;
    }
}

@media (max-width: 479px) {

    /* [121324TIN] Change style of instructor vs datetime */
    .event-hero-section .hero-event-card__datetime {
        padding: 0;
        background-color: transparent;
        font-size: 18px;
    }

    .event-hero-section .hero-event-card__today {
        font-size: 16px;
        border-radius: 12px 0;
    }
}

.event-group-by-day-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: white;
    box-sizing: border-box;
    padding: 16px;
    border-radius: 12px;
    height: 100%;
}

/* [122324TIN] Add css for today slide */
.event-group-by-day-card--today {
    background-color: #ffebcf;
}

.event-group-by-day-card__header {
    border-left: 3px solid #FE9F3A;
    padding: 0 5px;
}

.event-group-by-day-card__day {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #3d3d3d;
}

.event-group-by-day-card__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-group-by-date {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-group-by-date__title {
    font-size: 16px;
    font-weight: 600;
    padding: 0 8px;
    box-sizing: border-box;
    color: rgb(45, 22, 0);
}

.event-group-by-date__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-by-date-item {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    background-color: #fff4eb;
    padding: 8px;
    box-sizing: border-box;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    /* [122324TIN] Override color of default css */
    text-decoration: none;
    color: #1f1f1f;
}

.event-by-date-item:hover {
    background-color: #ffe6ca;
}

.event-by-date-item__time {
    background-color: white;
    width: fit-content;
    padding: 2px 8px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 4px;
}

.event-by-date-item__title {
    font-weight: 500;
    /* [122324TIN] Allow full text */
    /* display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
}

#event-day-splide .splide__arrow {
    height: 3rem;
    width: 3rem;
}

.event-detail-tooltip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Poppins", sans-serif;
}

.event-detail-tooltip__image {
    width: 100%;
}

.event-detail-tooltip__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.event-detail-tooltip__title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
    color: #1f1f1f;
    transition: all 0.2s;
}

.event-detail-tooltip__title:hover {
    text-decoration: underline;
}

.event-detail-tooltip__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-detail-tooltip__meta-field {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
}

.event-detail-tooltip__meta-field svg {
    width: 24px;
    height: auto;
}

.tippy-box[data-theme="light-custom"] {
    background-color: white;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 4px 20px 1px #33333361;
    box-sizing: border-box;
    padding: 12px;
}

.tippy-box[data-theme="light-custom"] .tippy-content {
    padding: 0;
}

/* [121324TIN] Add css for hero placeholder */
.event-hero-section .event-hero-placeholder {
    display: block;
    width: 100%;
    /* height: 400px; */
}

.event-hero-section .event-hero-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* [121324TIN] Add css for hero placeholder - end */