.banner-post {
    margin-top: 210px;
}

.banner-post--row {
    position: relative;
}

.banner-post--wrapper img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.banner-post--back-link {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.banner-post--link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 0.5px solid var(--black);
    border-radius: 100%;
}

.banner-post--link svg {
    max-width: 11px;
}

.banner-post--link svg path {
    fill: var(--black);
}

.banner-post--link:hover svg path {
    fill: var(--white);
}

.post-details--date {
    margin: 30px 0 20px;
}

.post-details--title {
    margin-bottom: 30px;
}

.post-details--divider {
    width: 70px;
    height: 1px;
    margin-bottom: 30px;
    background: var(--gold);
}

@media (max-width: 767px) {
    .banner-post {
        margin-top: 160px;
    }

    .banner-post--wrapper img {
        height: 220px;
    }

    .banner-post--back-link {
        top: -15px;
        transform: translateY(-100%);
    }

    .banner-post--link {
        width: 32px;
        height: 32px;
    }

    .post-details--wrapper {
        padding-left: 45px;
    }

    .post-details--date {
        margin: 10px 0 20px;
    }

    .post-details--title {
        margin-bottom: 10px;
    }

    .post-details--divider {
        margin-bottom: 20px;
    }
}