.featArticles__wrapper {
    display: flex;
    flex-flow: column nowrap;
    padding-bottom: 16px;
}

.featArticles__firstArticle {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    border-radius: 5px;
    box-shadow: 0 2px 10px 2px rgba(0,0,0,0.27);
    border-radius: 5px;
}

@media (max-width: 500px) {
    .featArticles__wrapper {
        gap: 16px !important;
    }
}

@media (min-width: 600px) {
    .featArticles__wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .featArticles__firstArticle {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        border-radius: 5px;
        box-shadow: 0 2px 10px 2px rgba(0,0,0,0.27);
        border-radius: 5px;
        grid-column: 1 / 3;
    }
}

@media (max-width: 900px) {
    .featArticles__wrapper--dynamic {
        grid-template-columns: 1fr 1fr !important; /* overwrites inline style for numcolumns */
    }
}

@media (max-width: 500px) {
    .featArticles__wrapper--dynamic {
        grid-template-columns: 1fr !important; /* overwrites inline style for numcolumns */
    }
}


@media (min-width: 1025px) {
    .featArticles__wrapper--cardGrid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .featArticles__firstArticle {
        grid-row: 1 / 3;
        grid-column: 1;
    }
}

.latestArts--home {
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: auto;
}

.featFlex--item {
    border-radius: 5px;
    overflow: hidden;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    box-shadow: 0 2px 10px 2px rgba(0,0,0,0.27);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featArticle-desc {
    padding: 10px;
}

.latestArtsImg--wrap {
    height: 208px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latestArts--img {
    object-position: 50% 50%;
    object-fit: cover;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.articleDates {
    color: #404040;
    margin-top: 10px;
    font-size: 14px;
}

a.articleTitles {
  color: #222222 !important;
  font-family: Roboto;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: underline;
}

.mainFeat--excerpt {
    margin-top: 10px;
    font-size: 16px;
}

@media (max-width: 500px) {
    .featArticles__firstArticle {
        flex-direction: row;
        flex-flow: unset;
        justify-content: end;
        box-shadow: none;
    }

    .featFlex--item {
        width: 100%;
        flex-direction: row;
        box-shadow: none;
        justify-content: end;
    }

    .featuredFlex-right {
        flex-flow: column;
        
    }

    .latestArts--home {
        width: 100px;
        height: 100px;
        border-radius: 5px;
    }

    .mainFeat--excerpt {
        display: none;
    }

    .latestArtsImg--wrap {
        width: 100px;
        height: 100px;
        border-radius: 5px;
    }

    .latestArtsImg--wrap img {
        width: 100px !important;
        height: 100px !important;
        min-width: 100%;
        min-height: 100%
    }

    .featArticle-desc {
        width: 70%;
    }

}

.featArticles_item--compact {
    width: 100%;
    margin: 0px 0px 10px 0px;
}

.featArticles_divider {
   background-color:light-gray;
   height: 2px;
}

/* this is to reset rows only when feat articles is being used its needed or it breaks*/
.row:has(.featArticles__wrapper) {
    display: block !important;
}