body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 515px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero .hero-title {
    color: #FFF;
    font-family: Oswald, sans-serif;
    font-size: 86.4px;
    font-style: normal;
    font-weight: 300;
    line-height: 103.68px;
    letter-spacing: 17.28px;
    text-transform: uppercase;
    margin: 80px 0 280px;
}

.content {
    padding: 0 20px 120px;
}

.content-container {
    max-width: 818px;
    margin: 0 auto;
    padding: 60px 32px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    border: 1px solid #BBB;
    position: relative;
    z-index: 1;
    top: -195px;
    margin-bottom: -195px;
    background-color: #FFF;
}

.article {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-title {
    color: #0D0D0D;
    font-family: Overpass, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.article-title a {
    color: inherit;
    text-decoration: none;
}

.article-meta {
    display: flex;
    margin: 0;
}

.article-meta a,
.article-meta span {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: #0D0D0D;
    font-family: Overpass, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.article-meta > *:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid #bbb;
}

.article-content {
    color: #0D0D0D;
    font-family: Overpass, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin: 0;
}

.article-content p {
    margin: 0;
}

.article-read-more {
    color: #0273E7;
    font-family: Overpass, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-read-more svg {
    flex-shrink: 0;
}

.article-image img {
    width: 100%;
    height: 569px;
    object-fit: cover;
    margin-top: 16px;
    display: block;
}

@media (max-width: 768px) {
    .content {
        padding: 0 16px 60px;
    }

    .content-container {
        padding: 32px 16px;
        top: -105px;
        margin-bottom: -105px;
        gap: 48px;
    }

    .hero {
        height: 345px;
    }

    .hero .hero-title {
        margin: 50px 0 185px;
        font-size: 64px;
        line-height: 1.1;
        letter-spacing: 10px;
    }

    .article-meta {
        font-size: 14px;
    }

    .article-content {
        font-size: 16px;
        line-height: 26px;
    }

    .article-read-more {
        font-size: 16px;
    }

    .article-image img {
        height: 200px;
        margin-top: 8px;
    }
}

