/* Media Press Room */

.media-press-container {
    background-color: white;
    padding: 120px 0;
    min-height: 660px;
}

.media-press {
    max-width: 1500px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    box-sizing: border-box;
}

.media-press-post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.media-press-post-header h2 {
    color: #6F7558;
    font-size: 72px;
    font-weight: 500;
    margin: 0;
    line-height: 72px;
}

.media-press-post-header p {
    color: #6F7558;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    text-align: right;
    display: flex;
    align-items: center;
}

.media-press-post {
    display: flex;
    flex-wrap: wrap;
}

.media-press-image {
    height: 280px;
    display: flex;
    justify-content: center;
}

.media-press-image img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.media-press-image img:hover {
    transform: scale(1.05);
}

.media-press-post > div {
    width: 33.333%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    box-sizing: border-box;
}

.media-press-post a {
    text-decoration: none;
}

.media-press-post h3 {
    color: #6F7558;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 40px;
}

.media-press-post p {
    color: #6F7558;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    margin-top: 10px;
    line-height: 32px;
}

.media-press-post label {
    color: #6F7558;
    cursor: pointer;
    font-weight: 500;
}

.animate__animated {
    opacity: 0;
}

.media-press-others-container {
    overflow: hidden;
    width: 100%;
    background: #E8E8E8;
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
}

.media-press-others-header {
    color: #6F7558;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 5px;
}

.media-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%);
    }
}

.media-press-others > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid #a4a4a4;
}

.media-press-others > a > img:hover {
    transform: scale(1.05);
}

.media-press-others > a > img {
    width: 100px;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

@media (max-width: 1500px) {
    .media-press-post-header h2 {
        font-size: 58px;
    }
}

@media (max-width: 1100px) {
    .media-press-post > div {
        width: 50%;
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .media-press-post > div {
        width: 100%;
    }

    .media-press-post-header {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .media-press-post-header p {
        text-align: left;
        line-height: 32px;
    }

    .media-press-container {
        padding: 100px 0;
    }

    .media-press {
        padding: 0 20px;
    }
}