.sm-news {
    background: #ffffff;
    color: #17283b;
    padding: clamp(54px, 5vw, 76px) 0;
}

.sm-news__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.sm-news__heading {
    margin: 0 0 22px;
    color: #17283b;
    font-size: clamp(30px, 2.5vw, 40px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.sm-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.sm-news-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e1e6eb;
    border-radius: 8px;
    background: #ffffff;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.sm-news-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5df;
    box-shadow: 0 14px 30px rgba(22, 40, 59, 0.1);
}

.sm-news-card__image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef2f5;
    text-decoration: none !important;
}

.sm-news-card__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 220ms ease;
}

.sm-news-card:hover .sm-news-card__image {
    transform: scale(1.025);
}

.sm-news-card__content {
    min-width: 0;
    min-height: 190px;
    padding: 17px 19px 18px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.sm-news-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: #7a8794;
    font-size: 11px;
    font-weight: 700;
}

.sm-news-card__category {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 4px;
    background: #123e73;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.sm-news-card__title {
    margin: 0;
    color: #17283b;
    font-size: clamp(19px, 1.5vw, 24px);
    font-weight: 900;
    line-height: 1.12;
}

.sm-news-card__title a,
.sm-news-card__title a:visited,
.sm-news-card__title a:hover,
.sm-news-card__title a:focus,
.sm-news-card__title a:active {
    color: inherit;
    text-decoration: none !important;
}

.sm-news-card__excerpt {
    margin: 12px 0 0;
    color: #677482;
    font-size: 13px;
    line-height: 1.45;
}

.sm-news--home .sm-news-card__excerpt {
    display: none;
}

.sm-news-card__link,
.sm-news-card__link:visited,
.sm-news-card__link:hover,
.sm-news-card__link:focus,
.sm-news-card__link:active {
    margin-top: auto;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: #17283b;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none !important;
}

.sm-news-card__link span {
    display: inline-block;
    transition: transform 180ms ease;
}

.sm-news-card__link:hover span,
.sm-news-card__link:focus span {
    transform: translateX(4px);
}

.sm-news--archive {
    padding-top: 28px;
}

.sm-news--archive .sm-news__grid {
    row-gap: 24px;
}

.sm-news--archive .sm-news-card__content {
    min-height: 250px;
}

.sm-news a,
.sm-news a:visited,
.sm-news a:hover,
.sm-news a:focus,
.sm-news a:active {
    text-decoration: none !important;
}

@media (max-width: 980px) {
    .sm-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .sm-news {
        padding: 42px 0;
    }

    .sm-news__inner {
        width: min(100% - 32px, 520px);
    }

    .sm-news__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sm-news-card__content,
    .sm-news--archive .sm-news-card__content {
        min-height: 0;
    }

    .sm-news-card__title {
        font-size: 21px;
    }
}


/* SM HOME NEWS DEALER RED */
.sm-news--home .sm-news-card__category {
  background: #ed1c24;
}
.sm-news--home .sm-news-card__link,
.sm-news--home .sm-news-card__link:visited,
.sm-news--home .sm-news-card__link:hover,
.sm-news--home .sm-news-card__link:focus,
.sm-news--home .sm-news-card__link:active {
  color: #ed1c24;
  text-decoration: none !important;
}



.sm-news--home .sm-news-card__link,
.sm-news--home .sm-news-card__link:visited,
.sm-news--home .sm-news-card__link:hover,
.sm-news--home .sm-news-card__link:focus,
.sm-news--home .sm-news-card__link:active {
  color: #ed1c24 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

