.media-hero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 140px 0 60px;

    @media (max-width: 768px) {
        padding: 95px 20px 40px;
    }
}

.media-breadcrumbs {
    font-family: 'Closer Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 40px;

    @media (max-width: 768px) {
        font-size: 12px;
        padding-bottom: 20px;
    }
}

.media-breadcrumbs a {
    color: rgba(0, 71, 53, 0.4);
    text-decoration: none;
}

.media-breadcrumbs a:hover {
    text-decoration: underline;
}

.media-breadcrumbs-current {
    color: rgba(0, 71, 53, 1);
}

.media-hero-title {
    font-family: 'Closer Text', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: rgba(1, 48, 38, 1);
    max-width: 785px;
    padding-bottom: 60px;

    @media (max-width: 768px) {
        max-width: unset;
        font-size: 32px;
        padding-bottom: 40px;
    }
}

.media-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-height: 700px;

    @media (max-width: 768px) {
        max-height: 380px;
    }
}

.media-hero-image__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.29%, rgba(0, 0, 0, 0.8) 100%), 
        linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.media-hero-image img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    height: 700px;

    @media (max-width: 768px) {
        max-height: 380px;
        height: 380px;
    }
}

.media-hero-meta {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 0;
    font-family: 'Closer Text', sans-serif;

    @media (max-width: 768px) {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 10px 0;
    }
}

.media-date,
.media-category,
.media-reading,
.media-share {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #CFE2E0;
}

@media (max-width: 768px) {
    .media-category,
    .media-reading {
        display: none;
    }
}
/* .media-category {
    margin-left: 20px;
    opacity: 0.8;
} */

.media-share {
    display: flex;
    align-items: center;
    gap: 16px;

    @media (max-width: 768px) { 
        gap: 10px;

        span {
            display: none;
        }
    }
}

.media-share a {
    background-color: #CFE2E0;
    border-radius: 100px;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 768px) { 
        width: 40px;
        height: 40px;
    }
}

.media-share img {
    width: 22px;
    height: 22px;

    @media (max-width: 768px) { 
        width: 20px;
        height: 20px;
    }
}

.media-hero-placeholder {
    padding: 20px;
    background: #eef0ee;
    border: 1px dashed #999;
    border-radius: 8px;
    text-align: center;
}
