.premium-banner-outer {
    background: linear-gradient(219.84deg, #EAECFF 39.82%, #F6ECFC 126.01%);
    padding: 5px 0;
    margin-bottom: 50px;
}

.premium-banner-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 30px;
}

.banner-left {
    flex: 0 0 48%;
}

.banner-right {
    flex: 1;
}

.premium-feat-img img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Breadcrumb Styling */
.premium-banner-outer .breadcrumb {
    margin-bottom: 0;
    padding: 0;
}

.premium-banner-outer .breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    height: auto !important;
    white-space: normal !important;
    overflow: visible !important;
    margin-bottom: 10px;
    text-overflow: clip !important;
}

.premium-banner-outer .breadcrumb a,
.premium-banner-outer .breadcrumb span,
.premium-banner-outer .breadcrumb-inner,
.premium-banner-outer .breadcrumb * {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    white-space: normal !important;
    display: inline !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: none !important;
}

.premium-banner-outer .breadcrumb .current-item {
    color: #6b7280 !important;
}

/* Category Info Styling */
.banner-right .single-cat-info {
    margin-bottom: 10px;
}

.premium-banner-outer .rb-iwrap {
    border-radius: 10px;
}

.banner-right .single-cat-info a {
    color: #10b981 !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    background: none !important;
    padding: 0 !important;
}

.banner-right .single-title {
    margin: 15px 0;
    color: #111827;
}

/* Meta Info Styling */
.banner-right .single-entry-meta {
    margin-top: 20px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.banner-right .single-entry-meta .inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.banner-right .meta-info-el {
    display: flex;
    align-items: center;
}

.banner-right .meta-info-el:after {
    content: "•";
    margin-left: 8px;
    color: #d1d5db;
    opacity: 0;
}

.banner-right .meta-info-el:last-child:after {
    display: none;
}

.banner-right .single-meta-avatar {
    margin-right: 12px;
}

.banner-right .single-meta-avatar img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.banner-right .meta-author-link {
    color: #4f46e5 !important;
    font-weight: 600;
}

/* Buttons Styling */
.banner-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.banner-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    text-align: center;
}

.btn-primary {
    background-color: #3b82f6;
    color: #ffffff !important;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: #ffffff;
    color: #3b82f6 !important;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #3b82f6;
    background-color: #f9fafb;
    transform: translateY(-2px);
}

/* Responsive */
@media (min-width: 1200px) {
    .banner-right .single-title {
        margin: 25px 0;
    }
}

@media (max-width: 1024px) {
    .premium-banner-wrap {
        gap: 30px;
    }
}

@media (max-width: 767px) {

    .premium-banner-wrap {
        flex-direction: column;
        text-align: left;
    }

    .banner-left {
        width: 100%;
    }

    .banner-btns {
        flex-direction: column;
        width: 100%;
    }

    .banner-btn {
        width: 100%;
    }
}