/* style/blog-best-promotions-guide.css */

/* Variables from custom color scheme */
:root {
    --twin-primary-color: #11A84E;
    --twin-secondary-color: #22C768;
    --twin-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --twin-card-bg: #11271B;
    --twin-background: #08160F;
    --twin-text-main: #F2FFF6;
    --twin-text-secondary: #A7D9B8;
    --twin-border-color: #2E7A4E;
    --twin-glow-color: #57E38D;
    --twin-gold-color: #F2C14E;
    --twin-divider-color: #1E3A2A;
    --twin-deep-green: #0A4B2C;
}

.page-blog-best-promotions-guide {
    font-family: Arial, sans-serif;
    color: var(--twin-text-main); /* Default text color for the page */
    background-color: var(--twin-background); /* Body background handled by shared, this is for main content sections */
}

.page-blog-best-promotions-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    background-color: var(--twin-background);
}

.page-blog-best-promotions-guide__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-blog-best-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure image meets min size */
}

.page-blog-best-promotions-guide__hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    color: var(--twin-text-main);
}

.page-blog-best-promotions-guide__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--twin-gold-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-best-promotions-guide__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--twin-text-secondary);
}

.page-blog-best-promotions-guide__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: var(--twin-button-gradient);
    color: #ffffff; /* Button text always white for contrast */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-blog-best-promotions-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-best-promotions-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--twin-background);
    color: var(--twin-text-main);
}

.page-blog-best-promotions-guide__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-best-promotions-guide__section-title {
    font-size: 2.2rem;
    color: var(--twin-gold-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-best-promotions-guide__sub-title {
    font-size: 1.6rem;
    color: var(--twin-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-best-promotions-guide__text-block {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--twin-text-secondary);
}

.page-blog-best-promotions-guide__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--twin-text-secondary);
}

.page-blog-best-promotions-guide__list-item {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--twin-text-secondary);
}

.page-blog-best-promotions-guide__list-item strong {
    color: var(--twin-text-main);
}

.page-blog-best-promotions-guide__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    min-height: 200px;
}

.page-blog-best-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: transparent;
    color: var(--twin-primary-color);
    border: 2px solid var(--twin-primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-blog-best-promotions-guide__btn-secondary:hover {
    background: var(--twin-primary-color);
    color: #ffffff;
}

/* FAQ Styles */
.page-blog-best-promotions-guide__faq-list {
    margin-top: 30px;
}

.page-blog-best-promotions-guide__faq-item {
    background-color: var(--twin-card-bg);
    border: 1px solid var(--twin-border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--twin-text-main);
}

.page-blog-best-promotions-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--twin-text-main);
    background-color: var(--twin-deep-green);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-best-promotions-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-best-promotions-guide__faq-question:hover {
    background-color: #0d5f38;
}

.page-blog-best-promotions-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-best-promotions-guide__faq-item[open] .page-blog-best-promotions-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-best-promotions-guide__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--twin-text-secondary);
}

/* CTA Wrapper */
.page-blog-best-promotions-guide__cta-wrapper {
    position: relative;
    margin-top: 50px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-blog-best-promotions-guide__cta-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-best-promotions-guide__cta-button {
    position: absolute;
    bottom: 20%; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 40px;
    font-size: 1.2rem;
    white-space: normal; /* Allow text wrapping for buttons */
    word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-best-promotions-guide__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-best-promotions-guide__section-title {
        font-size: 2rem;
    }
    .page-blog-best-promotions-guide__sub-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-blog-best-promotions-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-best-promotions-guide__hero-section {
        padding: 10px 15px 40px 15px;
    }
    .page-blog-best-promotions-guide__hero-content {
        padding: 0 15px;
    }
    .page-blog-best-promotions-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-best-promotions-guide__description {
        font-size: 1rem;
    }
    .page-blog-best-promotions-guide__btn-primary,
    .page-blog-best-promotions-guide__btn-secondary,
    .page-blog-best-promotions-guide a[class*="button"],
    .page-blog-best-promotions-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 15px;
    }
    .page-blog-best-promotions-guide__cta-button {
        position: static;
        transform: none;
        margin-top: 20px;
    }
    .page-blog-best-promotions-guide__content-area,
    .page-blog-best-promotions-guide__container,
    .page-blog-best-promotions-guide__cta-wrapper,
    .page-blog-best-promotions-guide__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-best-promotions-guide__image-full-width,
    .page-blog-best-promotions-guide__hero-image,
    .page-blog-best-promotions-guide__cta-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-blog-best-promotions-guide__section-title {
        font-size: 1.8rem;
    }
    .page-blog-best-promotions-guide__sub-title {
        font-size: 1.2rem;
    }
    .page-blog-best-promotions-guide__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-best-promotions-guide__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-blog-best-promotions-guide__cta-wrapper {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .page-blog-best-promotions-guide__hero-section {
        padding-bottom: 30px;
    }
    .page-blog-best-promotions-guide__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-blog-best-promotions-guide__btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-blog-best-promotions-guide__section-title {
        font-size: 1.6rem;
    }
    .page-blog-best-promotions-guide__sub-title {
        font-size: 1.1rem;
    }
    .page-blog-best-promotions-guide__faq-question {
        font-size: 0.95rem;
    }
}