/* 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: #325D5F;
    font-size: 72px;
    font-weight: 500;
    margin: 0;
    line-height: 72px;
    font-family: RUBIK, serif;
}

.media-press-post-header p {
    color: #325D5F;
    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 > a {
    width: 33.333%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-sizing: border-box;
}

.media-press-post h3 {
    color: #325D5F;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 40px;
    font-family: RUBIK, serif;
}

.media-press-post p {
    color: #325D5F;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    margin-top: 10px;
    line-height: 32px;
}

.media-press-post label {
    color: #325D5F;
    cursor: pointer;
    font-weight: 500;
}

.animate__animated {
    opacity: 0;
}

@media (max-width: 1500px) {
    .media-press-post-header h2 {
        font-size: 58px;
    }
}

@media (max-width: 1100px) {
    .media-press-post > a {
        width: 50%;
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .media-press-post > a {
        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;
    }
}