/*
 * Press section style for barone template.
 * Split layout: left text (35%), right photo (65%).
 */

section.press-section {
    display: flex;
    align-items: stretch;
    min-height: 400px;
    background-color: #f2f2f2;
    box-sizing: border-box;
}

.press-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4em 6%;
    box-sizing: border-box;
}

.press-left h3 {
    font-size: 1.4em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2em;
    color: #1c1c1e;
}

.press-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.press-left ul li {
    margin-bottom: .8em;
}

.press-left ul li a {
    font-size: .85em;
    color: #1c1c1e;
    text-decoration: none;
    letter-spacing: .5px;
    font-weight: 400;
    transition: color .2s ease;
}

.press-left ul li a:hover {
    color: #999;
}

.press-right {
    width: 65%;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    box-sizing: border-box;
}

@media screen and (max-width: 780px) {
    section.press-section {
        flex-direction: column;
    }

    .press-left,
    .press-right {
        width: 100%;
    }

    .press-right {
        min-height: 300px;
    }
}
