.elementor-16680 .elementor-element.elementor-element-29a1bc1{text-align:center;}.elementor-16680 .elementor-element.elementor-element-426f2f9{--divider-border-style:solid;--divider-color:#000;--divider-border-width:1px;}.elementor-16680 .elementor-element.elementor-element-426f2f9 .elementor-divider-separator{width:100%;}.elementor-16680 .elementor-element.elementor-element-426f2f9 .elementor-divider{padding-block-start:15px;padding-block-end:15px;}/* Start custom CSS for html, class: .elementor-element-84ad7c4 */.elementor-16680 .elementor-element.elementor-element-f76729a{text-align:center;}/* Start custom CSS for html, class: .elementor-element-4f35511 */

/* Main Page Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: contents;
}

/* Header Container */
.header-container {
    text-align: center;
    margin-bottom: 30px;
    font-family: "Fjalla One", Sans-serif;
    padding: 20px;
    max-width: 1000px;
}

/* Page Title */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    margin: 0;
}

/* Page Description */
.page-description {
    font-size: 16px;
    font-family: "Noto Sans JP";
    color: black;
    margin-top: 10px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .page-title {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px;
    }

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

    .page-description {
        font-size: 0.9rem;
    }
}

/* Event Container Styling */
.event-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Event Card Styling */
.event-card {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Event Info */
.event-info {
    padding: 15px;
}

/* Event Date Rounded Rectangle */
.event-date {
    background-color: #BD081C;
    color: white;
    font-size: .8rem;
    font-weight: bold;
    border-radius: 12px;
    position: static;
    transform: none;
    width: auto;
    height: auto;
    display: inline-block;
    padding: 8px 12px;
    font-family: "Noto Sans JP";
    margin-bottom: 12px;
}

/* Event Title */
.event-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    color: #333;
    text-align: center;
    font-family: "Fjalla One", Sans-serif;
}

/* Instructor and Location Styling */
.event-instructor-location {
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
    text-align: center;
}

.event-instructor-location p {
    margin-bottom: 20px;
    margin-top: 20px;
}

.event-instructor-location i {
    color: #BD081C;
    margin-right: 8px;
}

/* Event Description */
.event-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
    font-family: "Noto Sans JP";
}

/* Button Styling */
.event-button {
    display: inline-block;
    font-family: "Noto Sans JP";
    margin-top: 15px;
    padding: 12px 2px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.event-button:hover {
    background-color: white;
    border: solid 1px black;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* -- RESPONSIVE STYLES -- */

/* For Tablets and smaller screens (up to 1024px) */
@media (max-width: 1024px) {
    .event-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .event-card {
        max-width: 100%;
    }

    .event-title h3 {
        font-size: 1.3rem;
    }

    .event-button {
        font-size: 0.9rem;
    }
}

/* For Mobile screens (up to 768px) */
@media (max-width: 768px) {
    .event-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .event-card {
        max-width: 100%;
    }

    .event-title h3 {
        font-size: 1.2rem;
    }

    .event-button {
        font-size: 0.8rem;
    }
}

/* For Extra Small Screens (up to 480px, like some mobile phones) */
@media (max-width: 480px) {
    .event-container {
        padding: 10px;
    }

    .event-date {
        font-size: .75rem;
        padding: 7px 10px;
    }

    .event-title h3 {
        font-size: 1.1rem;
    }

    .event-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}
/* End custom CSS *//* End custom CSS */