/* =========================================================
   REFLEXÕES + REALIZAÇÕES
   ========================================================= */

.home-reflections-achievements {
    width: 100%;

    background: #f7f7f7;

    padding: 28px 0 35px;
}


.home-reflections-achievements-container {
    width: min(
        1380px,
        calc(100% - 80px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;
}


/* =========================================================
   COLUNAS
   ========================================================= */

.home-reflection-column,
.home-achievements-column {
    min-width: 0;

    padding: 0 25px;
}


.home-reflection-column {
    padding-left: 0;

    border-right:
        1px solid #dddddd;
}


.home-achievements-column {
    padding-right: 0;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.home-content-section-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 15px;

    padding-bottom: 10px;

    border-bottom:
        1px solid #dedede;
}


.home-content-eyebrow {
    display: block;

    margin-bottom: 4px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .7px;

    color: #888888;
}


.home-content-section-header h2 {
    margin: 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1;

    font-weight: 800;

    color: #222222;
}


.home-content-line {
    display: block;

    width: 43px;
    height: 2px;

    margin-top: 8px;

    background: #d20b16;
}


.home-content-more {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 12px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 800;

    color: #b0000c;

    text-decoration: none;
}


.home-content-more strong {
    font-size: 12px;
}


/* =========================================================
   REFLEXÕES
   ========================================================= */

.home-reflections-list {
    display: flex;

    flex-direction: column;
}


.home-reflection-item {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 15px;

    padding: 13px 0;

    border-bottom:
        1px solid #e1e1e1;
}


.home-reflection-item:last-child {
    border-bottom: none;
}


.home-reflection-date {
    display: block;

    padding-top: 3px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    color: #a00000;
}


.home-reflection-content h3 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 25px;

    line-height: 1.05;

    font-weight: 600;

    color: #222222;
}


.home-reflection-content h3 a {
    color: inherit;

    text-decoration: none;
}


.home-reflection-content p {
    margin: 7px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 10px;

    line-height: 1.5;

    color: #777777;
}


.home-reflection-read {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 800;

    color: #a00000;

    text-transform: uppercase;

    text-decoration: none;
}


.home-reflection-read span {
    font-size: 12px;
}


/* =========================================================
   REALIZAÇÕES
   ========================================================= */

.home-achievements-list {
    display: flex;

    flex-direction: column;
}


.home-achievement-item {
    display: grid;

    grid-template-columns: 135px 1fr;

    gap: 15px;

    padding: 10px 0;

    border-bottom:
        1px solid #e1e1e1;
}


.home-achievement-item:last-child {
    border-bottom: none;
}


.home-achievement-image {
    display: block;

    width: 135px;
    height: 92px;

    overflow: hidden;

    background: #ddd;
}


.home-achievement-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.home-achievement-item:hover
.home-achievement-image img {
    transform: scale(1.05);
}


.home-achievement-placeholder {
    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            #720000,
            #a40000
        );
}


.home-achievement-content {
    min-width: 0;

    padding-top: 2px;
}


.home-achievement-category {
    display: block;

    margin-bottom: 5px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .5px;

    color: #a00000;

    text-transform: uppercase;
}


.home-achievement-content h3 {
    margin: 0 0 6px;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    color: #222222;
}


.home-achievement-content h3 a {
    color: inherit;

    text-decoration: none;
}


.home-achievement-content time {
    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 8px;

    color: #888888;
}


/* =========================================================
   VAZIO
   ========================================================= */

.home-content-empty {
    margin: 20px 0;

    font-family:
        "Manrope",
        Arial,
        sans-serif;

    font-size: 9px;

    color: #888888;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .home-reflections-achievements-container {
        width:
            calc(100% - 50px);
    }

    .home-reflection-column,
    .home-achievements-column {
        padding-left: 15px;
        padding-right: 15px;
    }

    .home-reflection-column {
        padding-left: 0;
    }

    .home-achievements-column {
        padding-right: 0;
    }

    .home-reflection-content h3 {
        font-size: 22px;
    }

    .home-achievement-item {
        grid-template-columns: 110px 1fr;
    }

    .home-achievement-image {
        width: 110px;
        height: 80px;
    }
}


@media (max-width: 700px) {

    .home-reflections-achievements-container {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .home-reflection-column,
    .home-achievements-column {
        padding: 0 0 25px;

        border-right: none;

        border-bottom:
            1px solid #dddddd;
    }

    .home-achievements-column {
        border-bottom: none;
    }
}


@media (max-width: 500px) {

    .home-reflections-achievements {
        padding: 25px 0 30px;
    }

    .home-reflections-achievements-container {
        width:
            calc(100% - 30px);
    }

    .home-reflection-item {
        grid-template-columns: 50px 1fr;

        gap: 10px;
    }

    .home-reflection-content h3 {
        font-size: 21px;
    }

    .home-achievement-item {
        grid-template-columns: 100px 1fr;

        gap: 12px;
    }

    .home-achievement-image {
        width: 100px;
        height: 75px;
    }
}