/* ==============================
   BASE STYLES
============================== */
.event-section {
    background-color: #D9BF70;
    padding: 50px 40px;
}

/* Inner content */
.event-section .content-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ==============================
   HEADING
============================== */
.choose-section .content-heading {
    padding-bottom: 30px;
}

.event-section .content-heading h2 {
    font-size: 30px;
    line-height: 1.5;
    font-family: Caudex, "Caudex Fallback";
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: #000;
}

/* ==============================
   GRID ITEMS
============================== */
.event-box-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;

    /* center the whole container */
    max-width: 900px;  /* adjust width as needed */
    margin: 0 auto;    /* this centers it horizontally */
    padding-top: 20px;
}

.event-box-item {
    display: flex;
    align-items: center;
    gap: 10px; 
    padding-bottom: 10px;
}

.event-box-item img {
    width: 25px;
    height: 25px;
}

.event-box-item h4 {
    text-transform: capitalize;
    font-family: "Noto Sans", "Noto Sans Fallback";
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    color: #000;
}

/* ==============================
   TABLET (up to 1024px)
============================== */
@media (max-width: 1024px) {
    .event-section {
        padding: 40px 30px;
    }

    .event-section .content-heading h2 {
        font-size: 26px;
    }

    .event-box-items {
        gap: 15px;
        max-width: 700px;
    }

    .event-box-item img {
        width: 20px;
        height: 18px;
    }

    .event-box-item h4 {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ==============================
   MOBILE (up to 767px)
============================== */
@media (max-width: 767px) {
    .event-section {
        padding: 30px 20px;
    }

    .event-section .content-heading h2 {
        font-size: 22px;
    }

    .event-box-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        padding-top: 15px;
    }

    .event-box-item {
        flex-direction: row; /* image + text in a row */
        justify-content: flex-start;
        gap: 10px;
    }

    .event-box-item img {
        width: 24px;
        height: 20px;
    }

    .event-box-item h4 {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ==============================
   SMALL MOBILE (up to 480px)
============================== */
@media (max-width: 480px) {
    .event-section {
        padding: 20px 15px;
    }

    .event-section .content-heading h2 {
        font-size: 20px;
    }

    .event-box-items {
        grid-template-columns: 1fr; /* single column */
        gap: 10px;
        max-width: 100%;
        padding-top: 10px;
    }

    .event-box-item {
        flex-direction: column; /* stack image above text */
        align-items: center;
        gap: 5px;
    }

    .event-box-item img {
        width: 30px;
        height: 25px;
    }

    .event-box-item h4 {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
	.event-box-items {
        grid-template-columns:1fr;
    }
}
