.blog-hero {
    width: 100%;
    background: #0A797E;
}

.blog-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
    margin: 0 auto;
}

.blog-hero__content {
    background: #0A797E;
    color: #ffffff;
    padding: 140px 38px 16px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 580px;
    margin-left: auto;
}

.blog-hero__title {
    font-size: clamp(1.5rem, -0.0179rem + 4.8571vw, 3.625rem);
    line-height: clamp(1.625rem, -0.0714rem + 5.4286vw, 4rem);
    font-weight: 700;
    color: #ffffff;
}

.blog-hero__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 1rem;
    font-weight: 700;
}

.blog-hero__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-hero__avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
}

.blog-hero__author-name {
    flex: 1;
}

.blog-hero__image {
    position: relative;
}

.blog-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero__cta {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 20px;
    border: 2px solid #fff;
    border-radius: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-weight: 700;
    line-height: 14px;
    cursor: pointer;
    text-decoration: none;
    min-width: 248px;
    text-align: center;
    transition: all 0.25s ease;
}

.blog-hero__cta:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 900px) {
    .blog-hero__inner {
        grid-template-columns: 1fr;
        min-height: 500px;
    }

    .blog-hero__content {
        padding: 51px 16px 16px 16px;
        text-align: center;
        gap: 10px;
        max-width: initial;
        margin-left: initial;
    }

    .blog-hero__title {
        text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    }

    .blog-hero__meta {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .blog-hero__author {
        gap: 8px;
    }

    .blog-hero__avatar {
        width: 30px;
        height: 30px;
    }

    .blog-hero__cta {
        bottom: 10px;
        padding: 12px 20px;
        line-height: 22px;
    }
}
