.offer-hero-single-offer {
    background: linear-gradient(135deg, #0066fb, #8995b1);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Decorative background circle */
.offer-hero-single-offer::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.offer-title-single-offer {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.offer-description-single-offer {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    border-left: 3px solid #ffc107;
    padding-left: 15px;
}

.btn-book-single-offer {
    background-color: #ffc107;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-book-single-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    background-color: #e5ac00;
}

.hero-image-wrapper-sinoffer {
    position: relative;
    z-index: 1;
}

/* Floating effect for the car image */
.hero-image-single-offer {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
    max-height: 450px;
    width: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.limited-badge-single-offer {
    background: #ffc107;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-image-wrapper-sinoffer img {
    border-radius: 10px;
    border: 7px solid white;
    margin-left: 150px;
}

@media (max-width: 992px) {
    .btn-book-single-offer {
        padding: 9px 29px;
    }
    .offer-hero-single-offer {
        padding: 60px 0;
        text-align: center;
    }

    .offer-title-single-offer {
        font-size: 1.5rem;
    }

    .offer-description-single-offer {
        margin: 0 auto;
        border-left: none;
        padding-left: 0;
        font-size: 15px;
    }

    .hero-image-single-offer {
        max-height: 300px;
        margin-top: 40px;
    }

    .hero-image-wrapper-sinoffer img {
        margin-left: 0px;
    }

    .limited-badge-single-offer {
        font-size: 0.7rem;
    }
}

.content-article-section-sb {
    background-color: #f9fbff; /* Very light blue tint */
    padding: 30px 0;
}

.article-card-sb {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
}

/* Typography Improvements */
.article-body-sb {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568; /* Soft dark grey for better reading */
}

/* Style for any headers inside the body */
.article-body-sb h2,
.article-body-sb h3 {
    color: #2d3748;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Style for paragraphs to prevent "wall of text" */
.article-body-sb p {
    margin-bottom: 1.5rem;
    font-size: 15px;
}

/* Custom highlight for the promo code or brand name */
.text-highlight {
    color: #2d6cdf;
    font-weight: 600;
}

/* Footer / Date styling */
.article-footer-sb {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-date-sb {
    font-size: 0.9rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.promo-box {
    background: #fff9db;
    border: 1px solid #ffe066;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    font-weight: 700;
    color: #856404;
}

@media (max-width: 768px) {
    .article-card-sb {
        padding: 25px;
    }
    .article-body-sb {
        font-size: 1rem;
    }

    .post-date-sb {
        font-size: 0.7rem;
        color: #a0aec0;
        text-transform: uppercase;
        letter-spacing: 0px;
        font-weight: 600;
    }
}

.offers-section-ssb {
    background-color: #f8fafc;
    padding: 50px 0;
}
    .section-title-wrapper-ssb {
    margin-bottom: 32px;
    border-left: 5px solid #2d6cdf;
    padding-left: 20px;
}

    .section-title-wrapper-ssb .title-label {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
    /* Card Layout Improvements */
    .offer-card-custom-ssb {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 30px;
        transition: all 0.4s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .offer-card-custom-ssb:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .offer-img-wrapper-ssb {
        height: 200px; /* Reduced image height to make room for text */
        overflow: hidden;
        position: relative;
    }

    .offer-img-wrapper-ssb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Content Area - Moved outside of the image for perfect readability */
    .offer-body-ssb {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    .offer-body-ssb h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 10px;
    /* line-height: 1.4; */
}

    .offer-body-ssb h6 {
    font-weight: 400;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0px;
    /* line-height: 1.6; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    /* Action Link */
    .offer-link-text {
        color: #2d6cdf;
        font-weight: 700;
        font-size: 0.9rem;
        text-transform: uppercase;
    }

    /* Badge Positioning */
    .offer-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #ffc107;
        color: #000;
        padding: 4px 12px;
        border-radius: 6px;
        font-weight: 800;
        font-size: 0.7rem;
        z-index: 2;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

    @media (max-width: 768px) {
        .section-title-wrapper-ssb .title-label { font-size: 1.5rem; }
        .offers-section-ssb {
    background-color: #f8fafc;
    padding: 34px 0;
}
    }