/* style/blog-best-fishing-games-2024.css */
.page-blog-best-fishing-games-2024 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #ffffff; /* Default background for main content */
}

.page-blog-best-fishing-games-2024__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-best-fishing-games-2024__hero-section {
    position: relative;
    padding-top: 0; /* Important: Rely on body padding-top for header offset */
    margin-bottom: 40px;
    background-color: #017439; /* Brand color background for hero */
    color: #ffffff; /* White text for dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-best-fishing-games-2024__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for aesthetic */
    overflow: hidden;
    position: relative;
}

.page-blog-best-fishing-games-2024__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-best-fishing-games-2024__hero-content {
    padding: 40px 20px;
    max-width: 800px;
    text-align: center;
}

.page-blog-best-fishing-games-2024__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-blog-best-fishing-games-2024__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* General Sections */
.page-blog-best-fishing-games-2024__section {
    padding: 60px 0;
    margin-bottom: 30px;
    background-color: #ffffff;
}

.page-blog-best-fishing-games-2024__section-title {
    font-size: 2.5rem;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-blog-best-fishing-games-2024__subsection-title {
    font-size: 1.8rem;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-best-fishing-games-2024__text-block p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333333;
}

.page-blog-best-fishing-games-2024__text-block ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #333333;
}

.page-blog-best-fishing-games-2024__text-block li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #333333;
}

/* Game Cards */
.page-blog-best-fishing-games-2024__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-best-fishing-games-2024__game-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-blog-best-fishing-games-2024__game-card:hover {
    transform: translateY(-5px);
}

.page-blog-best-fishing-games-2024__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-blog-best-fishing-games-2024__game-card-content {
    padding: 20px;
}

.page-blog-best-fishing-games-2024__game-card-title {
    font-size: 1.4rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-blog-best-fishing-games-2024__game-card-description {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 15px;
}

/* Buttons */
.page-blog-best-fishing-games-2024__btn-primary {
    display: inline-block;
    background-color: #017439;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-best-fishing-games-2024__btn-primary:hover {
    background-color: #005f2f;
}

.page-blog-best-fishing-games-2024__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #017439;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #017439;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-best-fishing-games-2024__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005f2f;
}

.page-blog-best-fishing-games-2024__btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Login/Register Buttons (Custom Colors) */
.page-blog-best-fishing-games-2024__btn-login,
.page-blog-best-fishing-games-2024__btn-register {
    background-color: #C30808; /* Red for login/register */
    color: #FFFF00; /* Yellow text for login/register */
    border: 2px solid #C30808;
}

.page-blog-best-fishing-games-2024__btn-login:hover,
.page-blog-best-fishing-games-2024__btn-register:hover {
    background-color: #a00606;
    color: #FFFF00;
}

/* Call to Action */
.page-blog-best-fishing-games-2024__cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
    margin-top: 40px;
}

.page-blog-best-fishing-games-2024__cta-title {
    font-size: 2rem;
    color: #017439;
    margin-bottom: 20px;
}

.page-blog-best-fishing-games-2024__cta-text {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
}

/* Images */
.page-blog-best-fishing-games-2024 img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    /* No filter allowed */
    filter: none;
}

.page-blog-best-fishing-games-2024__promo-banner {
    width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
}

/* FAQ Section */
.page-blog-best-fishing-games-2024__faq-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    margin-bottom: 30px;
}

.page-blog-best-fishing-games-2024__faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-best-fishing-games-2024__faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-best-fishing-games-2024__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #017439;
    cursor: pointer;
    background-color: #fcfcfc;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-best-fishing-games-2024__faq-question:hover {
    background-color: #f0f0f0;
}

.page-blog-best-fishing-games-2024__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-best-fishing-games-2024__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #017439;
}

.page-blog-best-fishing-games-2024__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

.page-blog-best-fishing-games-2024__faq-item[open] .page-blog-best-fishing-games-2024__faq-question {
    background-color: #e6f7ed; /* Lighter background when open */
}

/* Logo Carousel Section */
.page-blog-best-fishing-games-2024__logo-carousel-section {
    padding: 10px 20px 30px; /* Small top padding */
    background-color: #f8f8f8;
    text-align: center;
    margin-bottom: 30px;
}

.page-blog-best-fishing-games-2024__logo-carousel-title {
    font-size: 1.8rem;
    color: #017439;
    margin-bottom: 30px;
}

.page-blog-best-fishing-games-2024__logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.page-blog-best-fishing-games-2024__logo-item {
    width: 80px;
    height: 80px;
    max-width: 80px; /* Ensure fixed size */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.page-blog-best-fishing-games-2024__logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Responsive Design for Tablets (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .page-blog-best-fishing-games-2024__container {
        padding: 0 15px;
    }

    .page-blog-best-fishing-games-2024__hero-content {
        padding: 30px 15px;
    }

    .page-blog-best-fishing-games-2024__hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .page-blog-best-fishing-games-2024__hero-description {
        font-size: 1.1rem;
    }

    .page-blog-best-fishing-games-2024__section {
        padding: 40px 0;
    }

    .page-blog-best-fishing-games-2024__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-blog-best-fishing-games-2024__subsection-title {
        font-size: 1.6rem;
    }

    .page-blog-best-fishing-games-2024__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .page-blog-best-fishing-games-2024__game-card-title {
        font-size: 1.2rem;
    }

    .page-blog-best-fishing-games-2024__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-best-fishing-games-2024__faq-answer {
        padding: 0 20px 15px;
    }

    .page-blog-best-fishing-games-2024__logo-carousel-title {
        font-size: 1.6rem;
    }

    .page-blog-best-fishing-games-2024__logo-carousel {
        gap: 20px;
    }
}


/* --- Responsive Design for Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    .page-blog-best-fishing-games-2024 {
        font-size: 16px; /* Mobile base font size */
        line-height: 1.6;
    }

    /* Fixed header spacing */
    .page-blog-best-fishing-games-2024__logo-carousel-section {
        padding: 10px 15px 20px !important; /* Small top padding, not var(--header-offset) */
    }
    .page-blog-best-fishing-games-2024__hero-section {
        padding-top: 0 !important; /* Ensure no double padding from body */
        margin-bottom: 20px;
    }

    .page-blog-best-fishing-games-2024__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-best-fishing-games-2024__hero-image-wrapper {
        max-height: 300px;
    }

    .page-blog-best-fishing-games-2024__hero-content {
        padding: 20px 15px;
    }

    .page-blog-best-fishing-games-2024__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* Adjust H1 for smaller screens */
        margin-bottom: 15px;
    }

    .page-blog-best-fishing-games-2024__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-best-fishing-games-2024__section {
        padding: 30px 0;
        margin-bottom: 20px;
    }

    .page-blog-best-fishing-games-2024__section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .page-blog-best-fishing-games-2024__subsection-title {
        font-size: 1.4rem;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .page-blog-best-fishing-games-2024__text-block p,
    .page-blog-best-fishing-games-2024__text-block li {
        font-size: 0.95rem;
    }

    /* Game display area */
    .page-blog-best-fishing-games-2024__games-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        margin-top: 20px;
    }

    .page-blog-best-fishing-games-2024__game-card {
        margin: 0 15px; /* Add horizontal padding to cards */
    }

    .page-blog-best-fishing-games-2024__game-image {
        height: 180px; /* Adjust image height */
    }

    .page-blog-best-fishing-games-2024__game-card-title {
        font-size: 1.1rem;
    }

    /* Universal image responsiveness */
    .page-blog-best-fishing-games-2024 img {
        max-width: 100% !important;
        width: 100% !important; /* Force width for content images */
        height: auto !important;
        box-sizing: border-box !important;
        display: block;
    }

    /* Exclude logo-item from general image rules */
    .page-blog-best-fishing-games-2024__logo-item {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        box-sizing: border-box;
        filter: grayscale(100%) !important;
        opacity: 0.7 !important;
    }

    /* Button responsiveness */
    .page-blog-best-fishing-games-2024__btn-primary,
    .page-blog-best-fishing-games-2024__btn-secondary,
    .page-blog-best-fishing-games-2024 a[class*="button"],
    .page-blog-best-fishing-games-2024 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;
    }

    .page-blog-best-fishing-games-2024__cta-buttons,
    .page-blog-best-fishing-games-2024__button-group,
    .page-blog-best-fishing-games-2024__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }

    .page-blog-best-fishing-games-2024__cta-section {
        padding: 30px 15px;
    }

    .page-blog-best-fishing-games-2024__cta-title {
        font-size: 1.6rem;
    }

    .page-blog-best-fishing-games-2024__cta-text {
        font-size: 1rem;
    }

    /* FAQ */
    .page-blog-best-fishing-games-2024__faq-section {
        padding: 30px 0;
    }
    .page-blog-best-fishing-games-2024__faq-list {
        padding: 0;
    }
    .page-blog-best-fishing-games-2024__faq-item {
        margin: 0 15px 15px;
    }
    .page-blog-best-fishing-games-2024__faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    .page-blog-best-fishing-games-2024__faq-answer {
        padding: 0 20px 15px;
    }

    /* Logo Carousel */
    .page-blog-best-fishing-games-2024__logo-carousel-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .page-blog-best-fishing-games-2024__logo-carousel {
        justify-content: space-around; /* Distribute logos evenly */
        gap: 15px;
    }
}