.rc-hero {
    background-color: #26282a;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 40px;
    padding-bottom: 0px;
}

.rc-hero__content-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px !important;
    margin: 0 auto;
    text-align: center;
}

.rc-hero__meta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rc-hero__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.rc-hero__category {
    padding: 6px 16px;
    background: rgba(224, 87, 42, 0.15);
    border: 1px solid rgba(224, 87, 42, 0.3);
    color: #e0572a;
    font-family: var(--font-aeonik);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

.rc-hero__title-container {
    width: 100%;
}

.rc-hero__title {
    color: #fff;
    font-family: var(--font-aeonik);
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    text-wrap: balance;
    margin: 0;
}

.rc-hero__info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
}

.rc-hero__separator {
    color: rgba(255, 255, 255, 0.3);
}

.rc-hero__date,
.rc-hero__reading-time,
.rc-hero__author {
    color: rgba(255, 255, 255, 0.8);
}

.rc-hero__image {
    width: 100%;
    margin-top: 60px;
    border-radius: 0px;
    overflow: hidden;
    aspect-ratio: 21/9;
    background-color: #1a1a1c;
}

.rc-hero__image-img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .container {
        max-width: unset !important;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .rc-hero {
        padding-top: 20px;
    }

    .container {
        padding: 0 16px;
    }

    .rc-hero__content-container {
        text-align: left;
        padding-bottom: 20px;
    }

    .rc-hero__meta {
        justify-content: flex-start;
    }

    .rc-hero__categories {
        justify-content: flex-start;
    }

    .rc-hero__info {
        justify-content: flex-start;
    }

    .rc-hero__date,
    .rc-hero__reading-time,
    .rc-hero__author {
        text-align: left;
    }

    .rc-hero__title {
        font-size: 2.5rem;
        text-align: left;
    }

    .rc-hero__image {
        margin-top: 40px;
        aspect-ratio: 16/9;
        border-radius: 0px;
    }

    .rc-hero__info {
        font-size: 14px;
        gap: 8px;
    }

    .rc-hero__category {
        font-size: 11px;
        padding: 4px 12px;
        border-radius: 4px;
    }
}

@media (max-width: 640px) {
    .rc-hero__title {
        font-size: 2rem;
    }
}
