/* style/blog-the-best-fishing-games-of-2024.css */

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

.page-blog-the-best-fishing-games-of-2024 {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color);
}

.page-blog-the-best-fishing-games-of-2024__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

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

.page-blog-the-best-fishing-games-of-2024__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.page-blog-the-best-fishing-games-of-2024__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-blog-the-best-fishing-games-of-2024__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-the-best-fishing-games-of-2024__description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-blog-the-best-fishing-games-of-2024__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-blog-the-best-fishing-games-of-2024__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-the-best-fishing-games-of-2024__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3rem;
}

.page-blog-the-best-fishing-games-of-2024__content-area,
.page-blog-the-best-fishing-games-of-2024__section {
    padding: 60px 20px;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

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

.page-blog-the-best-fishing-games-of-2024__container--center {
    text-align: center;
}

.page-blog-the-best-fishing-games-of-2024__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-the-best-fishing-games-of-2024__text-block {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary-color);
}

.page-blog-the-best-fishing-games-of-2024__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-the-best-fishing-games-of-2024__card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-blog-the-best-fishing-games-of-2024__card:hover {
    transform: translateY(-5px);
}

.page-blog-the-best-fishing-games-of-2024__card-title {
    font-size: 1.4rem;
    color: var(--text-main-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-the-best-fishing-games-of-2024__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

.page-blog-the-best-fishing-games-of-2024__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-the-best-fishing-games-of-2024__game-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-blog-the-best-fishing-games-of-2024__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-blog-the-best-fishing-games-of-2024__game-title {
    font-size: 1.3rem;
    color: var(--text-main-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-the-best-fishing-games-of-2024__game-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-the-best-fishing-games-of-2024__game-title a:hover {
    color: var(--gold-color);
}

.page-blog-the-best-fishing-games-of-2024__game-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog-the-best-fishing-games-of-2024__button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-blog-the-best-fishing-games-of-2024__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.page-blog-the-best-fishing-games-of-2024__button--small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.page-blog-the-best-fishing-games-of-2024__button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-the-best-fishing-games-of-2024__image-with-text {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-blog-the-best-fishing-games-of-2024__content-image {
    flex: 1 1 400px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-blog-the-best-fishing-games-of-2024__text-content {
    flex: 2 1 500px;
}

.page-blog-the-best-fishing-games-of-2024__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog-the-best-fishing-games-of-2024__list-item {
    background-color: var(--card-bg-color);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-the-best-fishing-games-of-2024__list-item strong {
    color: var(--gold-color);
}

.page-blog-the-best-fishing-games-of-2024__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 30px 0;
    color: var(--text-secondary-color);
}

.page-blog-the-best-fishing-games-of-2024__numbered-list .page-blog-the-best-fishing-games-of-2024__list-item {
    background-color: transparent;
    border-left: none;
    box-shadow: none;
    padding: 8px 0;
    margin-bottom: 5px;
    font-size: 1.05rem;
    color: var(--text-main-color);
}

.page-blog-the-best-fishing-games-of-2024__faq-list {
    margin-top: 40px;
}

.page-blog-the-best-fishing-games-of-2024__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-the-best-fishing-games-of-2024__faq-item[open] {
    background-color: var(--deep-green-color);
    border-color: var(--primary-color);
}

.page-blog-the-best-fishing-games-of-2024__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main-color);
    cursor: pointer;
    list-style: none; /* For details/summary */
}

.page-blog-the-best-fishing-games-of-2024__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-the-best-fishing-games-of-2024__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-blog-the-best-fishing-games-of-2024__faq-toggle {
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.page-blog-the-best-fishing-games-of-2024__faq-item[open] .page-blog-the-best-fishing-games-of-2024__faq-toggle {
    transform: rotate(45deg);
    background-color: var(--gold-color);
}

.page-blog-the-best-fishing-games-of-2024__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

.page-blog-the-best-fishing-games-of-2024__faq-answer p {
    margin-bottom: 0;
}

.page-blog-the-best-fishing-games-of-2024__call-to-action {
    padding: 80px 20px;
    background-color: var(--deep-green-color);
    text-align: center;
    border-top: 1px solid var(--divider-color);
}

.page-blog-the-best-fishing-games-of-2024__call-to-action .page-blog-the-best-fishing-games-of-2024__section-title {
    color: var(--glow-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-the-best-fishing-games-of-2024__hero-content {
        margin-top: 20px;
    }
    .page-blog-the-best-fishing-games-of-2024__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-the-best-fishing-games-of-2024__description {
        font-size: 1.1rem;
    }
    .page-blog-the-best-fishing-games-of-2024__image-with-text {
        flex-direction: column;
        gap: 30px;
    }
    .page-blog-the-best-fishing-games-of-2024__content-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-blog-the-best-fishing-games-of-2024__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-the-best-fishing-games-of-2024__hero-image {
        max-height: 400px;
    }
    .page-blog-the-best-fishing-games-of-2024__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-blog-the-best-fishing-games-of-2024__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-blog-the-best-fishing-games-of-2024__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-blog-the-best-fishing-games-of-2024__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    .page-blog-the-best-fishing-games-of-2024__content-area,
    .page-blog-the-best-fishing-games-of-2024__section {
        padding: 40px 15px;
    }
    .page-blog-the-best-fishing-games-of-2024__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-blog-the-best-fishing-games-of-2024__text-block {
        font-size: 1rem;
    }
    .page-blog-the-best-fishing-games-of-2024__grid,
    .page-blog-the-best-fishing-games-of-2024__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog-the-best-fishing-games-of-2024__card,
    .page-blog-the-best-fishing-games-of-2024__game-card {
        padding: 20px;
    }
    .page-blog-the-best-fishing-games-of-2024__game-image {
        height: 180px;
    }
    .page-blog-the-best-fishing-games-of-2024__card-title,
    .page-blog-the-best-fishing-games-of-2024__game-title {
        font-size: 1.2rem;
    }
    .page-blog-the-best-fishing-games-of-2024__list-item {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    .page-blog-the-best-fishing-games-of-2024__faq-question {
        font-size: 1.05rem;
        padding: 15px;
    }
    .page-blog-the-best-fishing-games-of-2024__faq-answer {
        padding: 0 15px 15px;
    }
    
    /* Forced mobile image/video/button responsiveness */
    .page-blog-the-best-fishing-games-of-2024 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-the-best-fishing-games-of-2024__hero-image-wrapper,
    .page-blog-the-best-fishing-games-of-2024__game-card,
    .page-blog-the-best-fishing-games-of-2024__image-with-text,
    .page-blog-the-best-fishing-games-of-2024__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-the-best-fishing-games-of-2024__cta-button,
    .page-blog-the-best-fishing-games-of-2024__button,
    .page-blog-the-best-fishing-games-of-2024 a[class*="button"],
    .page-blog-the-best-fishing-games-of-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;
        text-align: center;
    }
    .page-blog-the-best-fishing-games-of-2024__button-group {
        flex-direction: column !important;
        gap: 10px !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-the-best-fishing-games-of-2024__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog-the-best-fishing-games-of-2024__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-the-best-fishing-games-of-2024__video-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-blog-the-best-fishing-games-of-2024__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-blog-the-best-fishing-games-of-2024__section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }
}