.upcoming-events-entire-page {
    font-family: 'Roboto', sans-serif !important;
    hyphens: none !important;
    word-break: normal !important;
}

.events-conent-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.event-item {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 20px;
    background-color: #fff;
}

.event-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.event-cta {
    font-size: 16px;
    color: #004c97;
    text-decoration: underline !important;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.event-cta-bold {
    font-size: 18px;
    color: #004c97;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-conent-container {
        padding: 15px;
        gap: 15px;
    }

    .event-item {
        padding: 15px;
        gap: 15px;
    }

    .event-cta {
        font-size: 14px;
    }

    .event-cta-bold {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .events-conent-container {
        padding: 10px;
        gap: 10px;
    }

    .event-item {
        padding: 10px;
        gap: 10px;
    }

    .event-cta {
        font-size: 12px;
    }

    .event-cta-bold {
        font-size: 14px;
    }
}