﻿.section-news {
    background: var(--color-grey-pi);
    padding: 10vh 0 10vh 5vw;
    display: flex;
    gap: 40px;
    width: 100%;
}

.section-news-left {
    display: flex;
    flex-flow: column;
    width: 25vw;
    gap: 60px;
    padding-top: 15px;
}

.section-news-title {
    font-weight: 700;
    font-size: clamp(1.75rem, 5vw - 0.5rem, 2rem);
    line-height: 25px;
    color: var(--color-dark-blue);
}

.section-news-content {
    font-size: 16px;
    line-height: 22px;
    color: var(--color-primary-blue);
}

/*
.section-news-link:hover:after {
    content: '\e902';
    font-family: 'cmvm';
    color: var(--color-gold);
    font-size: 10px;
    position: absolute;
    right: -20%;
    bottom: 0;
}
*/

.section-news-link:hover:before {
    width: 120%;
}

.section-news-link:before {
    content: '';
    position: absolute;
    top: 115%;
    left: 0;
    width: 33%;
    height: 1px;
    background-color: var(--color-gold);
    transition: all .3s ease;
}

.section-news-link {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-dark-blue);
    position: relative;
    width: fit-content;
}

.section-news-right {
    width: 70vw;
    position: relative;
}

.carousel__arrows {
    color: var(--color-blue3);
    font-size: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding: 5px 40px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.carousel__arrows [class^="icon-"] {
    font-weight: 700;
}

.section-news .carousel .carousel-dots-container {
    margin-top: var(--space-xl);
    text-align: left;
}

.section-news .carousel .carousel-dots-container .carousel-dot.active {
    background-color: var(--color-copper);
}

.section-news .carousel .carousel-dots-container .carousel-dot {
    background-color: transparent;
    height: 16px;
    margin: 0 var(--space-s);
    width: 16px;
    border: 2px solid var(--color-copper);
}

/* responsive */

.phone .section-news, 
.tablet .section-news {
    flex-flow: column;
    padding: 4vh 5vw 4vh 5vw;
    align-items: center;
}

.phone .section-news-right {
    width: 100%;
}

.phone .section-news-left,
.tablet .section-news-left {
    padding-right: unset;
    width: 100%;
    min-height: 180px;
    margin-bottom: 30px;
}