/* voz Press Room */

.voz-press-container {
    background-color: #fafafa;
    padding: 120px 0;
    padding-bottom: 20px;
    min-height: 660px;
}

.voz-press {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    box-sizing: border-box;
}

.voz-press-post-header {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    margin-bottom: 70px;
}

.voz-press-post-header h2 {
    color: #3C8C8F;
    font-size: 72px;
    font-weight: 700;
    font-stretch: expanded;
    margin: 0;
    line-height: 65px;
    margin-top: 120px;
}

.voz-press-post-header p {
    color: #3C8C8F;
    font-size: 20px;
    font-weight: 300;
    line-height: 40px;
    padding-right: 500px;
    text-align: left;
    display: flex;
    align-items: center;
}

.voz-press-post {
    display: flex;
    flex-direction: column;
}

.voz-press-image {
    height: 400px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    border-radius: 10px;
}

.voz-recent{
    display: flex;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 30px;
}


.voz-recent a{
    display: flex;
    flex-direction: column;
}

.voz-recent span{
    font-size: 12px;
    color: #a4a4a4;
    text-align: left;
}

.voz-press-image{
    overflow: hidden;
}

.voz-press-image img {
    object-fit: cover;
    overflow: hidden;
    width: 390px;
    height: 430px;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.voz-press-image img:hover {
    transform: scale(1.1);
}

.voz-press-post > div {
    width: 510px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    box-sizing: border-box;
    margin-bottom: 120px;
}

.voz-press-post a {
    text-decoration: none;
}

.voz-press-post h3 {
    color: #3C8C8F;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    margin-top: 120px;
}

.voz-description{
    color: black;
    font-weight: bold;
    font-size: 16px;
}

.voz-press-post-header p {
    width: 50%;
    color: #3C8C8F;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    margin-top: 16px;
    line-height: 32px;
}

.voz-press-post label {
    color: #3C8C8F;
    padding-top: 5px;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    transition: all 300ms ease-in-out;
}

.voz-press-post label:hover{
    color: #FBBA33;
}

.animate__animated {
    opacity: 0;
}

.voz-press-others-container {
    overflow: hidden;
    width: 100%;
    background: #fafafa;
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
}

.banner {
    position: relative;
    display: flex;
    max-width: 100%;
    max-height: 500px;
}

.banner img{
    width: 100%;
    object-fit: cover;
    object-position: 15% 70%;
    border-radius: 20px;
}

.voz-press-others-header {
    color: #3C8C8F;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 5px;
}

.voz-press-others {
    display: flex;
    height: 50px;
    width: fit-content;
    margin: auto;
    animation: move 18s linear infinite;
}

@keyframes move {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.voz-press-others > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid #a4a4a4;
}

.voz-press-others > a > img:hover {
    transform: scale(1.05);
}

.voz-press-others > a > img {
    width: 100px;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

@media (max-width: 1500px) {
    .voz-press-post-header h2 {
        font-size: 58px;
    }
}

@media (max-width: 1100px) {
    .voz-press-post > div {
        width: 50%;
        padding: 30px 0;
    }
}

@media (max-width: 770px) {
    .voz-press-post-header h2{
        margin-top: 60px;
    }

    .voz-press-post h3 {
        font-size: 40px;
        margin-top: 60px;
    }

    .voz-press-post > div {
        width: 100%;
        padding: 0;
        margin-bottom: 0;
    }

    .voz-press-post-header {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .voz-press-post-header p {
        text-align: left;
        line-height: 32px;
        padding-right: 0;
    }

    .voz-press-container {
        padding: 100px 0;
    }

    .voz-press {
        padding: 0 20px;
    }

    .banner img{
        height: 250px;
    }

    .voz-press-image img {
        object-fit: cover;
        height: 95%;
        border-radius: 10px;
    }
}

@media (max-width: 450px) {
    .voz-press-image {
        height: 380px;
    }

    .voz-press-image img {
        object-fit: contain;
        height: 95%;
        border-radius: 10px;
    }
}