.core-cards.cards-3-across {
    --widget-main-color: var(--dark-gray);
    --first-heading-color: var(--light-green);
    --first-heading-font: var(--font-fraunces);
    --second-heading-font: var(--font-fraunces);
    --widget-body: var(--font-body);
    --button-hover-color: var(--dark-teal);

    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100%;
    padding-bottom: 55px;
}

.core-cards.cards-3-across .custom-header {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 45px;
}

.core-cards.cards-3-across .custom-header .first-heading {
    margin-bottom: 4px;
    font-family: var(--first-heading-font);
    color: var(--first-heading-color);
    font-size: 30px;
    font-weight: var(--weight-bold);
}

.core-cards.cards-3-across .custom-header .second-heading {
    font-family: var(--second-heading-font);
    font-weight: var(--weight-bold);
    color: var(--white);
    font-size: 44px;
    line-height: 1;
}

.core-cards.cards-3-across .slides {
    max-width: 1220px;
    padding: 0 30px;
    margin-bottom: 56px;
}

.core-cards.cards-3-across .slides .slide {
    background-color: var(--widget-main-color);
}

.core-cards.cards-3-across .blog-feed-header {
    display: none;
}

.core-cards.cards-3-across .slides .slide .img-cont {
    margin-bottom: 0;
}

.core-cards.cards-3-across .slides .slide .content-section {
    padding: var(--space-6) var(--space-5);
    padding-bottom: 35px;
}

.core-cards.cards-3-across .slides .slide .content-section > .inner {
    grid-template-columns: 80px 1fr;
    column-gap: 17px;
    row-gap: 19px;
}

.core-cards.cards-3-across .slides .slide .content-section > .inner .details {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    color: var(--white);
    height: 80px;
    border: 2px solid #9abc7d;
    border-radius: 100%;
    align-items: center;
}

.core-cards.cards-3-across .slides .slide .content-section > .inner .details .info-item {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    justify-items: center;
    gap: 0;
    height: 76%;
}

.core-cards.cards-3-across .slides .slide .content-section > .inner .details .info-item span:first-of-type {
    font-size: 25px;
    line-height: 0.7;
    color: var(--white);
    font-weight: 600;
}

.core-cards.cards-3-across .slides .slide .content-section > .inner .details .info-item span:nth-of-type(2) {
    width: 50%;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: lowercase;
}

.core-cards.cards-3-across .slides .slide .content-section > .inner .slide-title {
    align-self: center;
    margin-right: 20px;
    grid-row: 1 / 2;
    grid-column: 2 / 3; 
    font-size: var(--text-lg);
    line-height: 1.2;
    color: var(--white);
}

.core-cards.cards-3-across .slides .slide .content-section > .inner .slide-title.no-blog {
    grid-column: 1 / 3;
}

.core-cards.cards-3-across .slides .slide .content-section > .inner .slide-title a:hover {
    color: var(--white);
}

.core-cards.cards-3-across .slides .slide .content-section > .inner p {
    grid-column: span 2;
    font-family: var(--widget-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--white);
    font-weight: 500;
}

.core-cards.cards-3-across .slides .slide .content-section .read-more,
.core-cards.cards-3-across .slides .slide .content-section .read-more a:hover {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.core-cards.cards-3-across .widget-footer {
    display: flex;
    justify-content: center;
}

.core-cards.cards-3-across .widget-view-all {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background-color: var(--white);
    color: var(--widget-main-color);
    padding: 9.5px 40px;
}

.core-cards.cards-3-across .widget-view-all:hover {
    background-color: var(--button-hover-color);
    color: var(--white);
}

@media(min-width: 855px) {
    .core-cards.cards-3-across .slides {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 64em) {
    .core-cards.cards-3-across {
        padding-bottom: 80px;
    }

    .core-cards.cards-3-across .slides {
        gap: var(--space-6);
        margin-bottom: 26px;
    }

    .core-cards.cards-3-across .custom-header {
        margin-top: 26px;
        margin-bottom: 35px;
    }

    .core-cards.cards-3-across .custom-header .first-heading {
        font-size: 40px;
    }

    .core-cards.cards-3-across .custom-header .second-heading {
        font-size: 50px;
    }

    .core-cards.cards-3-across .slides .slide .content-section > .inner .slide-title {
        font-size: 20px;
    }
}