.page-blog-slot-rtp-free-spins {
    background-color: #08160F;
    color: #F2FFF6;
    padding-top: 10px; /* Small top padding for the first section */
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-slot-rtp-free-spins__hero-section {
    position: relative;
    max-width: 1200px; /* Content max width */
    margin: 0 auto 40px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    gap: 20px;
}

.page-blog-slot-rtp-free-spins__hero-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E;
}

.page-blog-slot-rtp-free-spins__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; /* For 1200x675 or 1920x1080 */
    object-fit: cover;
    object-position: center;
}

.page-blog-slot-rtp-free-spins__hero-content {
    text-align: center;
    padding: 20px 0;
}

.page-blog-slot-rtp-free-spins__main-title {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.3;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.page-blog-slot-rtp-free-spins__subtitle {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-slot-rtp-free-spins__meta-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #A7D9B8;
}

.page-blog-slot-rtp-free-spins__meta-item {
    padding: 5px 10px;
    background-color: #11271B;
    border-radius: 5px;
    border: 1px solid #1E3A2A;
}

.page-blog-slot-rtp-free-spins__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-blog-slot-rtp-free-spins__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

.page-blog-slot-rtp-free-spins__content-section {
    max-width: 900px; /* Blog content narrower */
    margin: 0 auto;
    padding: 20px 15px 60px 15px;
    background-color: #11271B; /* Card BG for content section */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E;
}

.page-blog-slot-rtp-free-spins__text-block {
    margin-bottom: 30px;
}

.page-blog-slot-rtp-free-spins__text-block p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #F2FFF6;
}

.page-blog-slot-rtp-free-spins__text-block p a {
    color: #57E38D; /* Glow color for links in text */
    text-decoration: none;
    font-weight: 600;
}

.page-blog-slot-rtp-free-spins__text-block p a:hover {
    text-decoration: underline;
}

.page-blog-slot-rtp-free-spins__section-title {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem); /* Responsive H2 font size */
    font-weight: 700;
    color: #22C768; /* Auxiliary color for H2 */
    margin-top: 40px;
    margin-bottom: 25px;
    line-height: 1.4;
    padding-bottom: 10px;
    border-bottom: 2px solid #1E3A2A; /* Divider */
    text-align: center;
}

.page-blog-slot-rtp-free-spins__content-image {
    width: 100%;
    max-width: 800px; /* Max width for content images */
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E;
    object-fit: cover;
    object-position: center;
}

.page-blog-slot-rtp-free-spins__list,
.page-blog-slot-rtp-free-spins__ordered-list {
    list-style-type: disc;
    margin: 20px 0 20px 20px;
    padding: 0;
    color: #F2FFF6;
}

.page-blog-slot-rtp-free-spins__ordered-list {
    list-style-type: decimal;
}

.page-blog-slot-rtp-free-spins__list li,
.page-blog-slot-rtp-free-spins__ordered-list li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.page-blog-slot-rtp-free-spins__list li strong {
    color: #F2C14E; /* Gold for strong text in lists */
}

.page-blog-slot-rtp-free-spins__cta-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #1E3A2A;
}

.page-blog-slot-rtp-free-spins__cta-button--large {
    padding: 15px 35px;
    font-size: 1.15rem;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-blog-slot-rtp-free-spins__hero-section {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .page-blog-slot-rtp-free-spins__hero-content {
        padding: 15px 0;
    }

    .page-blog-slot-rtp-free-spins__main-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        margin-bottom: 10px;
    }

    .page-blog-slot-rtp-free-spins__subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-slot-rtp-free-spins__meta-info {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .page-blog-slot-rtp-free-spins__content-section {
        padding: 15px 10px 40px 10px;
    }

    .page-blog-slot-rtp-free-spins__text-block p,
    .page-blog-slot-rtp-free-spins__list li,
    .page-blog-slot-rtp-free-spins__ordered-list li {
        font-size: 0.95rem;
    }

    .page-blog-slot-rtp-free-spins__section-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-top: 30px;
        margin-bottom: 20px;
    }

    /* Ensure content images are responsive and don't overflow */
    .page-blog-slot-rtp-free-spins__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size as per rule */
        min-height: 200px; /* Enforce min size as per rule */
    }

    .page-blog-slot-rtp-free-spins__cta-button--large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 549px) {
    .page-blog-slot-rtp-free-spins__hero-section {
        padding: 0 8px;
    }

    .page-blog-slot-rtp-free-spins__main-title {
        font-size: clamp(1.1rem, 6vw, 1.6rem);
    }

    .page-blog-slot-rtp-free-spins__subtitle {
        font-size: 0.9rem;
    }

    .page-blog-slot-rtp-free-spins__content-section {
        padding: 10px 8px 30px 8px;
    }

    .page-blog-slot-rtp-free-spins__text-block p {
        text-align: left; /* Adjust justify for smaller screens */
    }

    .page-blog-slot-rtp-free-spins__list,
    .page-blog-slot-rtp-free-spins__ordered-list {
        margin-left: 15px;
    }
}

/* Critical mobile content area image overflow prevention */
@media (max-width: 768px) {
    .page-blog-slot-rtp-free-spins img {
        max-width: 100%;
        height: auto;
    }
    .page-blog-slot-rtp-free-spins__content-image {
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }
}

/* Ensure no content causes horizontal scroll */
.page-blog-slot-rtp-free-spins {
    overflow-x: hidden;
}