.blog-hero {
    position: relative;
    margin-top: 123px;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 clamp(3.75rem, 5vw, 60px);
    box-sizing: border-box;
}

.blog-hero__back-link {
    display: inline-block;
    color: #AAAAAA;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 1.5rem;
    padding: 0 60px;
    transition: opacity 0.2s ease;
    opacity: 0.8;
}

.blog-hero__back-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Override WordPress block wrapper if it exists */
.wp-block-acf-blog-hero,
.wp-block[data-type="acf/blog-hero"],
[data-type="acf/blog-hero"] {
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
}

.blog-hero__inner {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background-color: #0e1630;
    color: #ffffff;
    min-height: 500px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-hero__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(270deg, #fff0 12%, #000000b3 75%);
    mix-blend-mode: normal;
    pointer-events: none;
    z-index: 1;
}

.blog-hero__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(110%);
    transform: scale(1.02);
    z-index: 0;
}

.blog-hero__content {
    position: relative;
    z-index: 2;
}

.blog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 9px;
    line-height: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(12px);
    opacity: 1;
    height: 21.14px;
    transform: rotate(0deg);
}

.blog-hero__title {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -2px;
    margin: 0;
    vertical-align: bottom;
}

.blog-hero__excerpt {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.92);
}


.blog-hero__avatar {
    width: 52px;
    height: 52px;
    border-radius: 500px;
    object-fit: cover;
    opacity: 1;
    transform: rotate(0deg);
}

.blog-hero__author-info {
    display: flex;
    flex-direction: column;
}

.blog-hero__author-name {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 6px;
}

.blog-hero__author-role {
    font-family: Lexend, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.7);
}

.blog-hero__meta-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #AAAAAA;
}

.blog-hero__meta-reading {
    margin-left: auto;
    text-align: right;
}

.blog-hero__meta-date-top {
    font-weight: 400;
}

.blog-hero__meta-reading {
    font-weight: 400;
}

.blog-hero__footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
}

.blog-hero__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-hero__bottom-meta-wrapper {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0 60px;
    box-sizing: border-box;
}

.blog-hero__bottom-meta {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.blog-hero__date-bottom {
    font-family: Lexend, sans-serif;
    font-size: 16px;
    color: #AAAAAA;
    font-weight: 400;
    text-align: left;
    opacity: 0.8;
}

.blog-hero__reading-bottom {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #AAAAAA;
    text-align: right;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .blog-hero {
        margin-top: 70px;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .blog-hero__back-link {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0 20px;
        font-size: 11px;
        margin-bottom: 1rem;
        color: #AAAAAA;
        position: relative;
        z-index: 10;
    }
    
    .blog-hero__inner {
        padding: 1.5rem;
        min-height: 400px;
        border-radius: 16px;
    }

    .blog-hero__badge {
        font-size: 8px;
        padding: 6px 16px;
        height: 20px;
        margin-bottom: 1rem;
    }

    .blog-hero__title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .blog-hero__excerpt {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 0.75rem;
    }

    .blog-hero__meta-top {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        font-size: 11px;
        margin-top: 0.75rem;
    }

    .blog-hero__footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .blog-hero__author {
        gap: 0.75rem;
    }

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

    .blog-hero__author-name {
        font-size: 16px;
    }

    .blog-hero__author-role {
        font-size: 14px;
    }

    .blog-hero__bottom-meta-wrapper {
        padding: 0 20px;
        margin-top: 1rem;
    }

    .blog-hero__bottom-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .blog-hero__date-bottom {
        font-size: 14px;
    }

    .blog-hero__reading-bottom {
        font-size: 11px;
        text-align: left;
    }

    .blog-hero__meta-date-bottom {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        margin-top: 40px;
        padding: 0 16px;
    }
    
    .blog-hero__back-link {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0 16px;
        font-size: 10px;
        margin-bottom: 0.75rem;
        color: #AAAAAA;
        position: relative;
        z-index: 10;
    }
    
    .blog-hero__inner {
        padding: 1.25rem;
        min-height: 360px;
        border-radius: 12px;
    }

    .blog-hero__badge {
        font-size: 7px;
        padding: 5px 12px;
        height: 18px;
        margin-bottom: 0.75rem;
    }

    .blog-hero__title {
        font-size: 24px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .blog-hero__excerpt {
        font-size: 13px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .blog-hero__meta-top {
        font-size: 10px;
        margin-top: 0.5rem;
    }

    .blog-hero__footer {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }

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

    .blog-hero__author-name {
        font-size: 14px;
    }

    .blog-hero__author-role {
        font-size: 12px;
    }

    .blog-hero__bottom-meta-wrapper {
        padding: 0 16px;
        margin-top: 0.75rem;
    }

    .blog-hero__date-bottom {
        font-size: 13px;
    }

    .blog-hero__reading-bottom {
        font-size: 10px;
    }
}



