

#watto-news-and-events-hero-section-info {
    margin: auto 0;

}

#watto-news-and-events-hero-section-info-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#watto-news-and-events-hero-section-info-title, #watto-news-and-events-hero-section-info-text {
    width: 50%;
}

#watto-news-and-events-list-section-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sectionGap, 24px);
}

.watto-news-and-events-list-section-cards-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sectionGap);
    width: 100%;
}

.watto-news-and-events-list-section-cards-card-image-container {
    background-color: var(--secondaryColor);
    width: 100%;
    height: 30vh;
    border-radius: var(--innerPageHeroSmallBoxImgContainerBorderRadius);
}

.watto-news-and-events-list-section-cards-card-content {
    display: inherit;
    flex-direction: column;
    gap: var(--sectionGap)
}

.watto-news-and-events-list-section-cards-card-content-title,
.watto-news-and-events-list-section-cards-card-content-date {
    color: var(--mainColor, #4358A3);
    text-align: center;
    position: relative;
}

.news-card::before {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0 0 0;
    content: url('../assets/HOME_news_ICON.png');
}

.news-card-divider {
    width: 80%;
    border: 1px solid var(--mainColor, #4358A3);
    margin: 24px 0 0 0;
    padding: 0;
    opacity: 0.1;
}

@media screen and (max-width: 768px) {
    #watto-news-and-events-hero-section-info-container {
        flex-direction: column;
        gap: var(--sectionGap)
    }

    #watto-news-and-events-hero-section-info-title, #watto-news-and-events-hero-section-info-text {
    width: 100%;
    }

    #watto-news-and-events-list-section-cards {
        grid-template-columns: 1fr;
    }

}