/* Base styles for the specific page */
.page-blog-197vip-latest-offers-guide {
    font-family: Arial, sans-serif;
    color: var(--text-main, #1F2D3D);
    background-color: var(--background, #F4F7FB);
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

/* Hero Section */
.page-blog-197vip-latest-offers-guide__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image-above-text */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--main-color, #2F6BFF) 0%, var(--aux-color, #6FA3FF) 100%);
    color: #FFFFFF;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1390px;
    overflow: hidden; /* Ensure rounded corners clip content */
}

.page-blog-197vip-latest-offers-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width within the hero section */
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-blog-197vip-latest-offers-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum size constraint */
    min-height: 200px;
}

.page-blog-197vip-latest-offers-guide__hero-content {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.page-blog-197vip-latest-offers-guide__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Using clamp for h1 as allowed, with reasonable min/max */
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #FFFFFF;
    max-width: 100%; /* Ensure it doesn't overflow */
}

.page-blog-197vip-latest-offers-guide__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0EFFF; /* Lighter text color for contrast */
}

.page-blog-197vip-latest-offers-guide__cta-button {
    display: inline-block;
    background: var(--button, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 150px; /* Ensure button is not too small */
}

.page-blog-197vip-latest-offers-guide__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly inverse gradient or darker */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Area */
.page-blog-197vip-latest-offers-guide__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: var(--card-bg, #FFFFFF);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-197vip-latest-offers-guide__article {
    padding: 30px 0;
}

.page-blog-197vip-latest-offers-guide__article-meta {
    font-size: 0.9em;
    color: #666666;
    margin-bottom: 20px;
    text-align: right;
}

.page-blog-197vip-latest-offers-guide__section-title {
    font-size: 1.8em;
    color: var(--text-main, #1F2D3D);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--border, #D6E2FF);
}

.page-blog-197vip-latest-offers-guide__paragraph {
    margin-bottom: 15px;
    color: var(--text-main, #1F2D3D);
}

.page-blog-197vip-latest-offers-guide__numbered-list,
.page-blog-197vip-latest-offers-guide__bullet-list {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-blog-197vip-latest-offers-guide__list-item {
    margin-bottom: 10px;
    color: var(--text-main, #1F2D3D);
}

.page-blog-197vip-latest-offers-guide__image-container {
    margin: 25px 0;
    text-align: center;
}

.page-blog-197vip-latest-offers-guide__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size constraint */
    min-height: 200px;
    object-fit: cover;
}

.page-blog-197vip-latest-offers-guide__image-caption {
    font-size: 0.9em;
    color: #777777;
    margin-top: 10px;
}

.page-blog-197vip-latest-offers-guide__inline-link {
    color: var(--main-color, #2F6BFF);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-197vip-latest-offers-guide__inline-link:hover {
    color: var(--aux-color, #6FA3FF);
    text-decoration: underline;
}

.page-blog-197vip-latest-offers-guide__cta-button--inline {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-blog-197vip-latest-offers-guide__faq-item {
    background-color: #F8F9FA; /* Slightly different background for FAQ item */
    border: 1px solid var(--border, #D6E2FF);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.page-blog-197vip-latest-offers-guide__faq-question {
    font-size: 1.1em;
    color: var(--custom-color_1776249996415, #000000); /* Use specific text color for questions */
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-197vip-latest-offers-guide__faq-answer {
    font-size: 1em;
    color: var(--text-main, #1F2D3D);
    margin-bottom: 0;
}

/* Related Articles Section */
.page-blog-197vip-latest-offers-guide__related-articles {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px 40px;
}

.page-blog-197vip-latest-offers-guide__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-197vip-latest-offers-guide__article-card {
    background-color: var(--card-bg, #FFFFFF);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-197vip-latest-offers-guide__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-197vip-latest-offers-guide__card-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency in cards */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Minimum size constraint */
    min-height: 200px;
}

.page-blog-197vip-latest-offers-guide__card-content {
    padding: 20px;
}

.page-blog-197vip-latest-offers-guide__card-title {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-blog-197vip-latest-offers-guide__card-title a {
    color: var(--custom-color_1776249996415, #000000);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-197vip-latest-offers-guide__card-title a:hover {
    color: var(--main-color, #2F6BFF);
    text-decoration: underline;
}

.page-blog-197vip-latest-offers-guide__card-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 15px;
}

.page-blog-197vip-latest-offers-guide__read-more {
    display: inline-block;
    color: var(--main-color, #2F6BFF);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-197vip-latest-offers-guide__read-more:hover {
    color: var(--aux-color, #6FA3FF);
    text-decoration: underline;
}

.page-blog-197vip-latest-offers-guide__view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-blog-197vip-latest-offers-guide__view-all-button {
    display: inline-block;
    background: var(--button, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-blog-197vip-latest-offers-guide__view-all-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-blog-197vip-latest-offers-guide__hero-section {
        padding: 30px 15px;
        margin: 15px auto;
    }

    .page-blog-197vip-latest-offers-guide__main-title {
        font-size: 2em; /* Smaller on mobile */
    }

    .page-blog-197vip-latest-offers-guide__description {
        font-size: 1em;
    }

    .page-blog-197vip-latest-offers-guide__content-area,
    .page-blog-197vip-latest-offers-guide__related-articles {
        margin: 20px auto;
        padding: 0 15px;
    }

    .page-blog-197vip-latest-offers-guide__section-title {
        font-size: 1.5em;
    }

    .page-blog-197vip-latest-offers-guide__content-image,
    .page-blog-197vip-latest-offers-guide__card-image {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
    }

    /* Important: Mobile overflow prevention for all images within content area */
    .page-blog-197vip-latest-offers-guide img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure no image filters are applied */
.page-blog-197vip-latest-offers-guide img {
    filter: none;
}

/* Content area images CSS dimensions lower bound */
/* This rule targets all images within the main content area, regardless of specific class,
   and prevents their display size from being smaller than 200px. */
.page-blog-197vip-latest-offers-guide__hero-image,
.page-blog-197vip-latest-offers-guide__content-image,
.page-blog-197vip-latest-offers-guide__card-image {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow auto width for responsive scaling, but respect min-width */
    height: auto; /* Allow auto height for responsive scaling, but respect min-height */
}

/* Specific override for card images to maintain aspect ratio while respecting min-height */
.page-blog-197vip-latest-offers-guide__card-image {
    height: 220px; /* Fixed height as per card design */
    object-fit: cover;
    min-height: 200px; /* Ensure it's not less than 200px */
}