.news-preview {overflow: hidden;}
.news-preview-block {
    width: 1040px;
    margin: 0 auto;
    position: relative;
}
.news-preview-block h2 {
    font-family: var(--font-header), sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
}
a.news-preview-href {
    display: flex;
    position: absolute;
    right: 0;
    top: 16px;
    font-family: var(--font-header), sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: rgba(0, 183, 198, 1);
}
a.news-preview-href:hover {
    color: var(--color-blue);
}
a.news-preview-href span{
    margin: 0 0 0 7px;
}
.news-previews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
    gap: 24px;
    margin: 36px 0 0 0;
}
.art-single-preview-box {
    width: auto;
}
div.image-preview-box {
    height: 192px;
    border-radius: 18px;
    overflow: hidden;
}
div.image-preview-box img {
    width: 100%;
    height: 192px;
    object-fit: cover;
}
.news-preview-block-date {
    font-family: var(--font-base), sans-serif;
    font-size: 15px;
    line-height: 24px;
    opacity: 0.5;
    margin: 25px 0 0 0;
}
.news-preview h3 {
    margin: 4px 0 0 0;
}
.news-preview h3 a {
    font-family: var(--font-base), sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin: 12px 0 0 0;
    color: var(--color-base);
    text-transform: none;
}
.news-preview h3 a:hover {
    color: var(--color-blue);
}
div.news-preview-text {
    margin: 14px 0 0 0;
    font-family: var(--font-base), sans-serif;
    font-size: 16px;
    line-height: 22px;
    opacity: 0.8;
}
.news-read-more {
    font-family: var(--font-header), sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-blue);
    margin: 17px 0 0 0;
    display: block;
}
.news-read-more:hover {
    color: var(--color-dark-blue);
}
.news-preview h3 {
    font-size: 20px;
    line-height: 24px;
    text-transform: unset;
}
.news-preview h3 a {
    font-size: 20px;
    line-height: 24px;
    font-family: var(--font-base), sans-serif;
    color: var(--color-base);
}

@media (max-width: 1100px) {
    .news-previews-container .news-preview:last-child {display: none;}
    .news-previews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-preview-block {
        width: 100%;
        padding: 0 20px;
        position: relative;
        box-sizing: border-box;
    }
    a.news-preview-href {
        right: 20px;
        top: 6px;
    }
    .news-preview-block h2 {
        font-weight: 500;
        font-size: 38px;
        line-height: 40px;
    }
}

@media (max-width: 690px) {
    .news-previews-container {
        grid-template-columns: repeat(1, 1fr);
    }
    a.news-preview-href {
        display: block;
        position: unset;
        height: 52px;
        width: 100%;
        border-radius: 10px;
        border: 1px solid var(--color-blue);
        color: var(--color-blue);
        font-family: var(--font-header), sans-serif;
        font-weight: 700;
        font-size: 17px;
        text-transform: uppercase;
        text-align: center;
        line-height: 52px;
        margin: 33px 0 0 0;
    }
    a.news-preview-href:hover {
        background-color: var(--color-light-cyan);
    }
    a.news-preview-href span{
        display: none;
    }
}