/* style/resources-sports-betting-hot-event-analysis.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #017439;
    --btn-register-bg: #C30808;
    --btn-register-text: #FFFF00;
}

.page-resources-sports-betting-hot-event-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-resources-sports-betting-hot-event-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-sports-betting-hot-event-analysis__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: var(--header-offset, 120px) 20px 60px;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-sports-betting-hot-event-analysis__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.page-resources-sports-betting-hot-event-analysis__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-resources-sports-betting-hot-event-analysis__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-sports-betting-hot-event-analysis__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-resources-sports-betting-hot-event-analysis__btn-primary,
.page-resources-sports-betting-hot-event-analysis__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    margin: 10px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-sports-betting-hot-event-analysis__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-resources-sports-betting-hot-event-analysis__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-resources-sports-betting-hot-event-analysis__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-sports-betting-hot-event-analysis__btn-secondary:hover {
    background-color: #f0f0f0;
    color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-resources-sports-betting-hot-event-analysis__btn-large {
    font-size: 1.1em;
    padding: 18px 35px;
}

.page-resources-sports-betting-hot-event-analysis__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-resources-sports-betting-hot-event-analysis__dark-bg .page-resources-sports-betting-hot-event-analysis__section-title {
    color: var(--text-light);
}

.page-resources-sports-betting-hot-event-analysis__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-resources-sports-betting-hot-event-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sports-betting-hot-event-analysis__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sports-betting-hot-event-analysis__card {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sports-betting-hot-event-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-sports-betting-hot-event-analysis__card-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-sports-betting-hot-event-analysis__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-resources-sports-betting-hot-event-analysis__list-item {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-sports-betting-hot-event-analysis__list-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-resources-sports-betting-hot-event-analysis__sub-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.page-resources-sports-betting-hot-event-analysis__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sports-betting-hot-event-analysis__image-center {
    display: block;
    margin: 40px auto 0;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sports-betting-hot-event-analysis__dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-sports-betting-hot-event-analysis__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Video Section Styling */
.page-resources-sports-betting-hot-event-analysis__video-section {
    padding: 60px 20px;
    text-align: center;
}

.page-resources-sports-betting-hot-event-analysis__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-hot-event-analysis__video-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1); /* Subtle overlay to indicate clickability */
}

.page-resources-sports-betting-hot-event-analysis__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* FAQ Section Styling */
.page-resources-sports-betting-hot-event-analysis__faq-section {
    padding: 60px 20px;
}

.page-resources-sports-betting-hot-event-analysis__faq-list {
    margin-top: 40px;
}

.page-resources-sports-betting-hot-event-analysis__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-sports-betting-hot-event-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-resources-sports-betting-hot-event-analysis__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-sports-betting-hot-event-analysis__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-sports-betting-hot-event-analysis__faq-item.active .page-resources-sports-betting-hot-event-analysis__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-sports-betting-hot-event-analysis__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-dark);
}

.page-resources-sports-betting-hot-event-analysis__faq-item.active .page-resources-sports-betting-hot-event-analysis__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px;
}

.page-resources-sports-betting-hot-event-analysis__faq-answer p {
    margin-bottom: 10px;
}

/* CTA Section Styling */
.page-resources-sports-betting-hot-event-analysis__cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-resources-sports-betting-hot-event-analysis__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-resources-sports-betting-hot-event-analysis__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-sports-betting-hot-event-analysis__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-sports-betting-hot-event-analysis__hero-title {
        font-size: 2.8em;
    }
    .page-resources-sports-betting-hot-event-analysis__section-title {
        font-size: 2em;
    }
    .page-resources-sports-betting-hot-event-analysis__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-sports-betting-hot-event-analysis__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-sports-betting-hot-event-analysis__hero-title {
        font-size: 2em;
    }
    .page-resources-sports-betting-hot-event-analysis__hero-description {
        font-size: 1em;
    }
    .page-resources-sports-betting-hot-event-analysis__section-title {
        font-size: 1.8em;
    }
    .page-resources-sports-betting-hot-event-analysis__cta-title {
        font-size: 2em;
    }
    .page-resources-sports-betting-hot-event-analysis__grid,
    .page-resources-sports-betting-hot-event-analysis__grid-2-col {
        grid-template-columns: 1fr;
    }
    .page-resources-sports-betting-hot-event-analysis__btn-primary,
    .page-resources-sports-betting-hot-event-analysis__btn-secondary,
    .page-resources-sports-betting-hot-event-analysis a[class*="button"],
    .page-resources-sports-betting-hot-event-analysis 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-resources-sports-betting-hot-event-analysis__cta-buttons,
    .page-resources-sports-betting-hot-event-analysis__button-group,
    .page-resources-sports-betting-hot-event-analysis__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 10px;
        overflow: hidden !important;
    }
    .page-resources-sports-betting-hot-event-analysis img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-sports-betting-hot-event-analysis__section,
    .page-resources-sports-betting-hot-event-analysis__card,
    .page-resources-sports-betting-hot-event-analysis__container,
    .page-resources-sports-betting-hot-event-analysis__video-section,
    .page-resources-sports-betting-hot-event-analysis__video-container,
    .page-resources-sports-betting-hot-event-analysis__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-sports-betting-hot-event-analysis__video-wrapper {
        padding-bottom: 75% !important; /* Adjust aspect ratio for mobile if needed, e.g., 4:3 */
    }
    .page-resources-sports-betting-hot-event-analysis__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-sports-betting-hot-event-analysis p,
    .page-resources-sports-betting-hot-event-analysis li {
      font-size: 16px;
      line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .page-resources-sports-betting-hot-event-analysis__hero-title {
        font-size: 1.8em;
    }
    .page-resources-sports-betting-hot-event-analysis__hero-description {
        font-size: 0.9em;
    }
    .page-resources-sports-betting-hot-event-analysis__section-title {
        font-size: 1.5em;
    }
    .page-resources-sports-betting-hot-event-analysis__cta-title {
        font-size: 1.8em;
    }
    .page-resources-sports-betting-hot-event-analysis__btn-large {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-resources-sports-betting-hot-event-analysis__card-title {
        font-size: 1.3em;
    }
    .page-resources-sports-betting-hot-event-analysis__list-title {
        font-size: 1.2em;
    }
    .page-resources-sports-betting-hot-event-analysis__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-resources-sports-betting-hot-event-analysis__faq-item.active .page-resources-sports-betting-hot-event-analysis__faq-answer {
        padding: 10px 15px;
    }
}