/* style/blog-exclusive-offers-analysis.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --bg-color-dark: #08160F;
    --card-bg-color: #11271B;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-exclusive-offers-analysis {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Default text color for dark body background */
    background-color: var(--bg-color-dark);
    line-height: 1.6;
}

.page-blog-exclusive-offers-analysis__hero-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--bg-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-exclusive-offers-analysis__hero-content-wrapper {
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    text-align: center;
}

.page-blog-exclusive-offers-analysis__hero-text-block {
    flex: 1;
    min-width: 0;
}

.page-blog-exclusive-offers-analysis__hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--text-main-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-exclusive-offers-analysis__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-exclusive-offers-analysis__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.page-blog-exclusive-offers-analysis__btn-primary,
.page-blog-exclusive-offers-analysis__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-exclusive-offers-analysis__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-exclusive-offers-analysis__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-exclusive-offers-analysis__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-blog-exclusive-offers-analysis__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-color-dark);
}

.page-blog-exclusive-offers-analysis__btn-primary--small,
.page-blog-exclusive-offers-analysis__btn-secondary--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-blog-exclusive-offers-analysis__hero-image-wrapper {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-exclusive-offers-analysis__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: block;
}

.page-blog-exclusive-offers-analysis__section {
    padding: 60px 20px;
    background-color: var(--bg-color-dark);
    box-sizing: border-box;
}

.page-blog-exclusive-offers-analysis__section--dark {
    background-color: var(--bg-color-dark);
    color: var(--text-main-color);
}

.page-blog-exclusive-offers-analysis__section--cta-bottom {
    text-align: center;
}

.page-blog-exclusive-offers-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-exclusive-offers-analysis__container--center {
    text-align: center;
}

.page-blog-exclusive-offers-analysis__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-exclusive-offers-analysis__text-block {
    font-size: 1.05rem;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-exclusive-offers-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-exclusive-offers-analysis__card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.page-blog-exclusive-offers-analysis__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-exclusive-offers-analysis__card-title {
    font-size: 1.4rem;
    color: var(--text-main-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.page-blog-exclusive-offers-analysis__card-description {
    font-size: 0.95rem;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: center;
}

.page-blog-exclusive-offers-analysis__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-exclusive-offers-analysis__step-item {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.page-blog-exclusive-offers-analysis__step-icon {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-exclusive-offers-analysis__step-title {
    font-size: 1.3rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-exclusive-offers-analysis__step-description {
    font-size: 0.95rem;
    color: var(--text-secondary-color);
}

.page-blog-exclusive-offers-analysis__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-exclusive-offers-analysis__list-icon {
    color: var(--glow-color);
    font-weight: bold;
    margin-right: 10px;
}

.page-blog-exclusive-offers-analysis__list li {
    font-size: 1.05rem;
    color: var(--text-main-color);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    text-align: justify;
}

.page-blog-exclusive-offers-analysis__list li span {
    flex-shrink: 0;
}

.page-blog-exclusive-offers-analysis__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-exclusive-offers-analysis__tip-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.page-blog-exclusive-offers-analysis__tip-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-exclusive-offers-analysis__tip-title {
    font-size: 1.3rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-exclusive-offers-analysis__tip-description {
    font-size: 0.95rem;
    color: var(--text-secondary-color);
}

.page-blog-exclusive-offers-analysis__faq-list {
    margin-top: 40px;
}

.page-blog-exclusive-offers-analysis__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-blog-exclusive-offers-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-blog-exclusive-offers-analysis__faq-question:hover {
    background-color: var(--deep-green-color);
}

.page-blog-exclusive-offers-analysis__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-exclusive-offers-analysis__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--glow-color);
}

.page-blog-exclusive-offers-analysis__faq-item[open] .page-blog-exclusive-offers-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-exclusive-offers-analysis__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary-color);
    line-height: 1.6;
    text-align: justify;
}

/* Responsive Design */
@media (min-width: 769px) {
    .page-blog-exclusive-offers-analysis__hero-content-wrapper {
        flex-direction: row; /* Desktop: row layout */
        text-align: left;
    }

    .page-blog-exclusive-offers-analysis__hero-text-block {
        padding-right: 40px;
    }

    .page-blog-exclusive-offers-analysis__hero-image-wrapper {
        padding-left: 40px;
    }

    .page-blog-exclusive-offers-analysis__cta-buttons {
        justify-content: flex-start;
    }

    .page-blog-exclusive-offers-analysis__container--center .page-blog-exclusive-offers-analysis__cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-blog-exclusive-offers-analysis {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-exclusive-offers-analysis__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-blog-exclusive-offers-analysis__hero-title {
        font-size: 2rem;
    }

    .page-blog-exclusive-offers-analysis__hero-description {
        font-size: 1rem;
    }

    .page-blog-exclusive-offers-analysis__btn-primary,
    .page-blog-exclusive-offers-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .page-blog-exclusive-offers-analysis__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-blog-exclusive-offers-analysis__hero-image-wrapper {
        margin-top: 30px;
    }

    .page-blog-exclusive-offers-analysis__section {
        padding: 40px 15px;
    }

    .page-blog-exclusive-offers-analysis__heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-blog-exclusive-offers-analysis__text-block {
        font-size: 0.95rem;
    }

    .page-blog-exclusive-offers-analysis__grid,
    .page-blog-exclusive-offers-analysis__steps-grid,
    .page-blog-exclusive-offers-analysis__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-exclusive-offers-analysis__card,
    .page-blog-exclusive-offers-analysis__step-item,
    .page-blog-exclusive-offers-analysis__tip-card {
        padding: 20px;
    }

    .page-blog-exclusive-offers-analysis__card-title,
    .page-blog-exclusive-offers-analysis__step-title,
    .page-blog-exclusive-offers-analysis__tip-title {
        font-size: 1.2rem;
    }

    .page-blog-exclusive-offers-analysis__card-description,
    .page-blog-exclusive-offers-analysis__step-description,
    .page-blog-exclusive-offers-analysis__tip-description {
        font-size: 0.9rem;
    }

    .page-blog-exclusive-offers-analysis__list li {
        font-size: 0.95rem;
    }

    .page-blog-exclusive-offers-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-exclusive-offers-analysis__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    /* Mobile image responsiveness */
    .page-blog-exclusive-offers-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers with images/content */
    .page-blog-exclusive-offers-analysis__section,
    .page-blog-exclusive-offers-analysis__container,
    .page-blog-exclusive-offers-analysis__card,
    .page-blog-exclusive-offers-analysis__hero-content-wrapper,
    .page-blog-exclusive-offers-analysis__hero-image-wrapper,
    .page-blog-exclusive-offers-analysis__steps-grid,
    .page-blog-exclusive-offers-analysis__tip-card,
    .page-blog-exclusive-offers-analysis__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-exclusive-offers-analysis__hero-section {
        overflow: hidden !important;
    }
}