.vbp-news-release {
    display: flex;
    flex-direction: row;
    color: #FFF;
    background-color: transparent;
    overflow: hidden;
    gap: 50px;
}

.vbp-news-release__news {
    display: flex;
    flex-direction: column;
    width: calc((100%/3)*2);
    padding-top: 50px;
    height: fit-content;
    gap: 25px;
}

.vbp-news-release__news__upper-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    color: var(--vbp-color-2);
    gap: 30px;
}

.vbp-news-release__news__upper-text__title {
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

.vbp-news-release__news__upper-text__button {
    color: var(--vbp-color-3);
    border-color: var(--vbp-color-3);
}

.nav-button {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    position: relative;
    align-items: center;
}

.nav-button__text {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    padding: 10px;
}

.nav-button__icon {
    display: flex;
    border: solid 2px;
    border-radius: 100%;
    min-width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.nav-button:hover {
    color: var(--vbp-color-2);
    border-color: var(--vbp-color-2);
    transition: all 0.3s;
}

.vbp-news-release__news__list {
    display: flex;
    gap: 25px;
}

.vbp-news-release__news__list__item {
    position: relative;
    display:block;
    overflow: hidden;
    aspect-ratio: 280/250;
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    width: 32%;
}

.vbp-news-release__news__list__item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.vbp-news-release__news__list__item__gradient {
    z-index: 11;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 31.25%, rgba(0, 0, 0, 0.80) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
}

.vbp-news-release__news__list__item__bottom-text {
    z-index: 12;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    color:#FFF;
}

.vbp-news-release__news__list__item__bottom-text__title {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    line-height: 1.2;
    margin-bottom: 5px;
}
.vbp-news-release__news__list__item__bottom-text__date {
    display:flex;
    gap: 5px;
    align-items: center;
}

.vbp-news-release__news__list__item__bottom-text__subtitle {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    line-height: 1.2;
}

.vbp-news-release__register-redirection {
    width: calc(1/3 * 100%);
    aspect-ratio: 500/356;
    position: relative;
}

.vbp-news-release__register-redirection img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.vbp-news-release__register-redirection__gradient {
    z-index: 11;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(0deg, rgba(11, 19, 50, 0.80) 0%, rgba(11, 19, 50, 0.80) 100%);
}

.vbp-news-release__register-redirection__content {
    z-index: 12;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.vbp-news-release__register-redirection__content__logo {
    display: flex;
    vertical-align: top;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}


.vbp-news-release__register-redirection__content__title {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 360px;
    line-height: 1.5;
}

.vbp-news-release__register-redirection__content__button{
    color: #FFF;
    border-color: #FFF;
}

@media screen and (max-width:1550px){
    .vbp-news-release__news {
        gap: 25px;
    }

    .vbp-news-release__news {
        padding-left: 50px;
    }
}

@media screen and (max-width:1480px) {
    .vbp-news-release__news__upper-text {
        gap: 15px;
    }
    .vbp-news-release__news__upper-text {
        flex-direction: column;
    }
}

@media screen and (max-width: 1311px) {
    .vbp-news-release__news {
        padding: 50px 30px 0px 30px;
    }
}

@media screen and (max-width:1250px){
    .vbp-news-release{
        flex-direction: column;
        gap: 50px;
    }
    .vbp-news-release__news{
        padding: 50px 50px 0px 50px;
        width: 100%;
    }
    .vbp-news-release__register-redirection {
        width: 100%;
        min-height: 300px;
        aspect-ratio: 3/1;
    }
}


@media screen and (max-width:768px){
    .vbp-news-release__register-redirection {
        height: 300px;
    }
    .vbp-news-release__news__list__item {
        width: 100%;
        height: auto;
    }
    .vbp-news-release__news__list {
        flex-wrap: wrap;
    }
    .vbp-news-release__news__upper-text__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 560px) {
    .vbp-news-release__news__upper-text__title {
        font-size: 28px;
    }
}

