
    .without-border {
        border: none !important;
    }
    .e-card__wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    .e-card {
        background-color: #FFFFFF;
        border: 1px solid #E5E5E5;
        border-radius: 8px;
        transition: all linear 0.2s;
    }
    .e-card:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    .e-card__img {
        width: 100%;
        padding-bottom: 73%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px;
    }
    .e-card__box {
        display: flex;
        flex-direction: column;
        min-height: 245px;
        padding: 20px 23px;
    }
    .e-card__title {
        font-weight: 700;
        font-size: 20px;
        line-height: 26px;
        color: #1D1D1D;
    }
    .e-card__date {
        margin-top: auto;
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
        color: #666666;
    }
    .e-card--50 {
        position: relative;
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .e-card--50 .e-card__img {
        height: 100%;
    }
    .e-card--50 .e-card__box {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 335px;
        height: unset;
        min-height: unset;
    }
    .e-card__subtitle {
        font-size: 16px;
        color: #BCC1CC;
    }
    .e-card--50 .e-card__title {
        margin-top: 4px;
        color: #fff;
    }

    @media (max-width: 1366px) {
        .e-card__wrapper {
            gap: 20px;
        }
    }
    @media (max-width: 991px) {
        .e-card__wrapper {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .e-card__box {
            min-height: 150px;
            padding: 20px;
        }
        .e-card__title {
            font-size: 16px;
            line-height: 18px;
        }
        .e-card__subtitle {
            font-size: 10px;
        }
    }
    @media (max-width: 768px) {
        .e-card__wrapper {
            display: flex;
            overflow-x: auto;
            padding-bottom: 16px;
        }
        .e-card {
            min-width: 240px;
            max-width: 240px;
        }
        .e-card--50 {
            grid-column-start: unset;
            grid-column-end: unset;
        }
    }

 /*---------- NEWS HEADER ------------*/
    .news-header-wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .news-header-wrapper > h3,
    .news-header-wrapper > a{
        position: relative;
        display: block;
        margin: initial;
    }
    
    .news-header-wrapper > a{
        top: initial;
    }