.v2-post-banner {
    background-color: var(--primary-color, #002e5b);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
    color: #fff;
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 380px;
}

.v2-post-banner__breadcrumbs {
    font-size: 13px;
    margin-bottom: 28px;
}

.v2-post-banner__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.v2-post-banner__breadcrumbs a:hover {
    color: #fff;
}

.v2-post-banner__breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.v2-post-banner__breadcrumb-current {
    color: rgba(255, 255, 255, 0.5);
}

.v2-post-banner__title {
    font-family: var(--heading-font, 'Inter 18pt', sans-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #fff;
}

.v2-post-banner__description {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 24px;
}

.v2-post-banner__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.v2-post-banner__category {
    background: var(--secondary-clr, #f15a24);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v2-post-banner__date,
.v2-post-banner__read-time {
    position: relative;
}

.v2-post-banner__date::after {
    content: '\00B7';
    margin-left: 16px;
    color: rgba(255, 255, 255, 0.4);
}

/* Fallback banner */
.v2-post-banner--fallback {
    background-size: contain;
    background-position: right center;
}

.v2-post-banner--fallback .v2-post-banner__title {
    color: #fff;
}

.v2-post-banner--fallback .v2-post-banner__meta {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {
    .v2-post-banner__content {
        max-width: 70%;
    }

    .v2-post-banner__title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .v2-post-banner {
        padding: 24px 0;
    }

    .v2-post-banner__content {
        max-width: 100%;
    }

    .v2-post-banner__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .v2-post-banner__title {
        font-size: 28px;
    }

    .v2-post-banner__description {
        font-size: 16px;
    }

    .v2-post-banner__image img {
        max-height: 300px;
    }
}
