/* style/blog-2024-online-entertainment-trends.css */
.page-blog-2024-online-entertainment-trends {
    font-family: Arial, sans-serif;
    color: #333333; /* Default dark text for light body background */
    line-height: 1.6;
    background-color: #FFFFFF;
}

.page-blog-2024-online-entertainment-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-2024-online-entertainment-trends__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Adhering to fixed header spacing rule */
    padding-bottom: 40px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-blog-2024-online-entertainment-trends__image-wrapper {
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-2024-online-entertainment-trends__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-blog-2024-online-entertainment-trends__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-2024-online-entertainment-trends__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Using clamp for H1 font size */
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-2024-online-entertainment-trends__description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 30px;
}

.page-blog-2024-online-entertainment-trends__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-2024-online-entertainment-trends__btn-primary,
.page-blog-2024-online-entertainment-trends__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-blog-2024-online-entertainment-trends__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-blog-2024-online-entertainment-trends__btn-primary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
}

.page-blog-2024-online-entertainment-trends__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-blog-2024-online-entertainment-trends__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* General Section Styling */
.page-blog-2024-online-entertainment-trends__introduction-section,
.page-blog-2024-online-entertainment-trends__trend-section,
.page-blog-2024-online-entertainment-trends__impact-section,
.page-blog-2024-online-entertainment-trends__faq-section {
    padding: 60px 0;
}

.page-blog-2024-online-entertainment-trends__introduction-section {
    background-color: #ffffff;
}

.page-blog-2024-online-entertainment-trends__trend-section {
    background-color: #f9f9f9;
}

.page-blog-2024-online-entertainment-trends__impact-section {
    background-color: #ffffff;
}

.page-blog-2024-online-entertainment-trends__faq-section {
    background-color: #f5f5f5;
}

.page-blog-2024-online-entertainment-trends__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Trend List */
.page-blog-2024-online-entertainment-trends__trend-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.page-blog-2024-online-entertainment-trends__trend-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-blog-2024-online-entertainment-trends__trend-subtitle {
    font-size: 1.6em;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-2024-online-entertainment-trends__trend-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

/* CTA Buttons Bottom */
.page-blog-2024-online-entertainment-trends__cta-buttons--bottom {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-blog-2024-online-entertainment-trends__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-2024-online-entertainment-trends__faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-blog-2024-online-entertainment-trends__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1em;
    color: #333333;
    background-color: #e0f2f7; /* Lighter shade of brand color for summary */
    border-bottom: 1px solid #d0e0e3;
}

.page-blog-2024-online-entertainment-trends__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-2024-online-entertainment-trends__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-blog-2024-online-entertainment-trends__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-2024-online-entertainment-trends__faq-item[open] .page-blog-2024-online-entertainment-trends__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-2024-online-entertainment-trends__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    background-color: #ffffff;
}

.page-blog-2024-online-entertainment-trends__faq-answer p {
    margin-bottom: 0;
}

/* Global image responsiveness for content area */
.page-blog-2024-online-entertainment-trends img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-2024-online-entertainment-trends__trend-list {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-blog-2024-online-entertainment-trends__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero Section - Mobile */
    .page-blog-2024-online-entertainment-trends__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-blog-2024-online-entertainment-trends__hero-image {
        object-fit: contain; /* For mobile hero, contain to prevent cropping */
        aspect-ratio: unset;
        max-height: none;
    }

    .page-blog-2024-online-entertainment-trends__main-title {
        font-size: 1.8em; /* Adjust H1 font size for smaller screens */
        margin-bottom: 10px;
    }

    .page-blog-2024-online-entertainment-trends__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-blog-2024-online-entertainment-trends__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        padding: 0 15px;
    }

    /* Buttons - Mobile */
    .page-blog-2024-online-entertainment-trends__btn-primary,
    .page-blog-2024-online-entertainment-trends__btn-secondary,
    .page-blog-2024-online-entertainment-trends a[class*="button"],
    .page-blog-2024-online-entertainment-trends 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-2024-online-entertainment-trends__cta-buttons,
    .page-blog-2024-online-entertainment-trends__button-group,
    .page-blog-2024-online-entertainment-trends__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;
    }

    /* General Section Styling - Mobile */
    .page-blog-2024-online-entertainment-trends__introduction-section,
    .page-blog-2024-online-entertainment-trends__trend-section,
    .page-blog-2024-online-entertainment-trends__impact-section,
    .page-blog-2024-online-entertainment-trends__faq-section {
        padding: 40px 0;
    }

    .page-blog-2024-online-entertainment-trends__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Trend List - Mobile */
    .page-blog-2024-online-entertainment-trends__trend-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 30px;
    }

    .page-blog-2024-online-entertainment-trends__trend-item {
        padding: 20px;
    }

    .page-blog-2024-online-entertainment-trends__trend-subtitle {
        font-size: 1.4em;
    }

    .page-blog-2024-online-entertainment-trends__trend-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* FAQ Section - Mobile */
    .page-blog-2024-online-entertainment-trends__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-blog-2024-online-entertainment-trends__faq-answer {
        padding: 15px 20px;
    }

    /* Global image responsiveness for content area */
    .page-blog-2024-online-entertainment-trends img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-2024-online-entertainment-trends__image-wrapper,
    .page-blog-2024-online-entertainment-trends__trend-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Content area containers for mobile padding */
    .page-blog-2024-online-entertainment-trends__introduction-section .page-blog-2024-online-entertainment-trends__container,
    .page-blog-2024-online-entertainment-trends__trend-section .page-blog-2024-online-entertainment-trends__container,
    .page-blog-2024-online-entertainment-trends__impact-section .page-blog-2024-online-entertainment-trends__container,
    .page-blog-2024-online-entertainment-trends__faq-section .page-blog-2024-online-entertainment-trends__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}