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

.page-blog-okking4-promotions-guide {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-top: 10px; /* Small top padding for the first section, relying on body padding-top for header offset */
    background-color: #FFFFFF; /* Default background */
    color: #000000; /* Default text color */
}

.page-blog-okking4-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Hero Section */
.page-blog-okking4-promotions-guide__hero-section {
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    text-align: center;
    padding: 0 0 40px 0;
    background-color: #f0f8ff; /* Light background for the hero section */
}

.page-blog-okking4-promotions-guide__hero-image-wrapper {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-blog-okking4-promotions-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; /* Standard aspect ratio for hero image */
    object-fit: cover;
    object-position: center;
    filter: none; /* No filter */
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

.page-blog-okking4-promotions-guide__hero-content {
    padding: 20px 15px;
    max-width: 800px;
}

.page-blog-okking4-promotions-guide__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Responsive H1 font size */
    max-width: 100%;
}

.page-blog-okking4-promotions-guide__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333333;
}

/* CTA Buttons */
.page-blog-okking4-promotions-guide__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-blog-okking4-promotions-guide__cta-button--primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #FFFFFF;
}

.page-blog-okking4-promotions-guide__cta-button--primary:hover {
    background-color: #d46f06;
    transform: translateY(-2px);
}

.page-blog-okking4-promotions-guide__cta-button--secondary {
    background-color: #26A9E0; /* Primary color for secondary CTA */
    color: #FFFFFF;
}

.page-blog-okking4-promotions-guide__cta-button--secondary:hover {
    background-color: #1f8ec4;
    transform: translateY(-2px);
}

.page-blog-okking4-promotions-guide__cta-button--contact {
    background-color: #6c757d; /* A neutral color for contact */
    color: #FFFFFF;
}

.page-blog-okking4-promotions-guide__cta-button--contact:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

/* Section Titles */
.page-blog-okking4-promotions-guide__section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

/* Promotions List Section */
.page-blog-okking4-promotions-guide__promotions-list-section {
    padding-bottom: 40px;
    background-color: #f8f9fa; /* Light grey background */
}

.page-blog-okking4-promotions-guide__promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-okking4-promotions-guide__promotion-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-okking4-promotions-guide__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-blog-okking4-promotions-guide__promotion-image-wrapper {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-blog-okking4-promotions-guide__promotion-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3; /* Consistent aspect ratio for promo images */
    object-fit: cover;
    filter: none; /* No filter */
    min-width: 200px; /* Enforce min image size */
    min-height: 200px;
}

.page-blog-okking4-promotions-guide__promotion-content {
    padding: 20px;
}

.page-blog-okking4-promotions-guide__promotion-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-blog-okking4-promotions-guide__promotion-description {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-blog-okking4-promotions-guide__read-more-button {
    display: inline-block;
    padding: 8px 18px;
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.page-blog-okking4-promotions-guide__read-more-button:hover {
    background-color: #1f8ec4;
}

.page-blog-okking4-promotions-guide__view-all-promos {
    text-align: center;
    margin-top: 20px;
}


/* Guide Section */
.page-blog-okking4-promotions-guide__guide-section {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.page-blog-okking4-promotions-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog-okking4-promotions-guide__step-card {
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-okking4-promotions-guide__step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #26A9E0; /* Primary color */
    margin-bottom: 15px;
}

.page-blog-okking4-promotions-guide__step-description {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.page-blog-okking4-promotions-guide__additional-info {
    text-align: center;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

.page-blog-okking4-promotions-guide__additional-info .page-blog-okking4-promotions-guide__cta-button {
    margin-top: 20px;
}

/* FAQ Section */
.page-blog-okking4-promotions-guide__faq-section {
    padding: 40px 0 60px 0;
    background-color: #f8f9fa; /* Light grey background */
}

.page-blog-okking4-promotions-guide__faq-list {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-blog-okking4-promotions-guide__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-okking4-promotions-guide__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.page-blog-okking4-promotions-guide__faq-answer {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.page-blog-okking4-promotions-guide__faq-cta {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-okking4-promotions-guide__container {
        padding: 15px 12px;
    }

    .page-blog-okking4-promotions-guide__hero-section {
        padding-bottom: 30px;
    }

    .page-blog-okking4-promotions-guide__main-title {
        font-size: clamp(1.5rem, 6vw, 2rem); /* Adjust H1 for smaller screens */
    }

    .page-blog-okking4-promotions-guide__intro-text {
        font-size: 1rem;
    }

    .page-blog-okking4-promotions-guide__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-blog-okking4-promotions-guide__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 20px;
    }

    .page-blog-okking4-promotions-guide__promotion-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 20px;
    }

    .page-blog-okking4-promotions-guide__steps-grid {
        grid-template-columns: 1fr; /* Stack steps on mobile */
        gap: 20px;
    }

    .page-blog-okking4-promotions-guide__hero-image,
    .page-blog-okking4-promotions-guide__promotion-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }

    /* All img elements within .page-blog-okking4-promotions-guide must adhere to this */
    .page-blog-okking4-promotions-guide img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content images are never smaller than 200px display size */
.page-blog-okking4-promotions-guide__hero-image,
.page-blog-okking4-promotions-guide__promotion-image {
    min-width: 200px;
    min-height: 200px;
}