/* style/industry-news-caxeng-responsible-gambling.css */

:root {
    --caxeng-primary: #0A2239;
    --caxeng-secondary: #FFD700;
    --caxeng-accent: #DC143C;
    --caxeng-light-text: #FFFFFF;
    --caxeng-dark-text: #333333;
    --caxeng-bg-light: #F8F8F8;
    --caxeng-bg-dark: #1A3A53;
    --caxeng-border: #E0E0E0;
}

.page-industry-news-caxeng-responsible-gambling {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--caxeng-dark-text);
    background-color: var(--caxeng-bg-light);
}

.page-industry-news-caxeng-responsible-gambling__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-caxeng-responsible-gambling__section {
    padding: 60px 0;
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) {
    background-color: var(--caxeng-bg-dark);
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__section-title,
.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__grid-title,
.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__list-title,
.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__faq-question {
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__section-title {
    font-size: 2.5em;
    color: var(--caxeng-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-industry-news-caxeng-responsible-gambling__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--caxeng-secondary);
    border-radius: 2px;
}

.page-industry-news-caxeng-responsible-gambling__hero-section {
    background: linear-gradient(135deg, var(--caxeng-primary) 0%, #2A4F73 100%); /* Darker blue to slightly lighter blue */
    color: var(--caxeng-light-text);
    padding: 100px 0;
    text-align: center;
}

.page-industry-news-caxeng-responsible-gambling__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-industry-news-caxeng-responsible-gambling__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-industry-news-caxeng-responsible-gambling__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-industry-news-caxeng-responsible-gambling__btn--primary {
    background-color: var(--caxeng-secondary);
    color: var(--caxeng-primary);
}

.page-industry-news-caxeng-responsible-gambling__btn--primary:hover {
    background-color: #E6B800;
    transform: translateY(-3px);
}

.page-industry-news-caxeng-responsible-gambling__btn--secondary {
    background-color: transparent;
    color: var(--caxeng-light-text);
    border: 2px solid var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__btn--secondary:hover {
    background-color: var(--caxeng-light-text);
    color: var(--caxeng-primary);
    transform: translateY(-3px);
}

.page-industry-news-caxeng-responsible-gambling__btn--link {
    color: var(--caxeng-secondary);
    text-decoration: underline;
    padding: 0;
    background: none;
    font-size: 1em;
}

.page-industry-news-caxeng-responsible-gambling__btn--link:hover {
    color: #E6B800;
    text-decoration: none;
    transform: none;
}

.page-industry-news-caxeng-responsible-gambling__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-industry-news-caxeng-responsible-gambling__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-industry-news-caxeng-responsible-gambling__text-content {
    flex: 1;
}

.page-industry-news-caxeng-responsible-gambling__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-industry-news-caxeng-responsible-gambling__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-industry-news-caxeng-responsible-gambling__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-industry-news-caxeng-responsible-gambling__highlight {
    color: var(--caxeng-secondary);
    font-weight: bold;
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__highlight {
    color: var(--caxeng-secondary);
}

.page-industry-news-caxeng-responsible-gambling__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-industry-news-caxeng-responsible-gambling__grid-item {
    background-color: var(--caxeng-light-text);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__grid-item {
    background-color: var(--caxeng-primary);
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-industry-news-caxeng-responsible-gambling__grid-title {
    font-size: 1.8em;
    color: var(--caxeng-primary);
    margin-bottom: 15px;
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__grid-title {
    color: var(--caxeng-secondary);
}

.page-industry-news-caxeng-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-industry-news-caxeng-responsible-gambling__list-item {
    background-color: var(--caxeng-light-text);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 5px solid var(--caxeng-secondary);
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__list-item {
    background-color: var(--caxeng-primary);
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__list-title {
    font-size: 1.5em;
    color: var(--caxeng-primary);
    margin-bottom: 10px;
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__list-title {
    color: var(--caxeng-secondary);
}

.page-industry-news-caxeng-responsible-gambling__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-industry-news-caxeng-responsible-gambling__faqs .page-industry-news-caxeng-responsible-gambling__faq-item {
    background-color: var(--caxeng-light-text);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__faqs .page-industry-news-caxeng-responsible-gambling__faq-item {
    background-color: var(--caxeng-primary);
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__faq-question {
    font-size: 1.3em;
    color: var(--caxeng-primary);
    margin-bottom: 10px;
    cursor: pointer;
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__faq-question {
    color: var(--caxeng-secondary);
}

.page-industry-news-caxeng-responsible-gambling__faq-answer {
    font-size: 1em;
    color: var(--caxeng-dark-text);
    margin-top: 5px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-industry-news-caxeng-responsible-gambling__section:nth-of-type(even) .page-industry-news-caxeng-responsible-gambling__faq-answer {
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__faq-answer.active {
    display: block;
}

.page-industry-news-caxeng-responsible-gambling__cta-final {
    background: linear-gradient(135deg, var(--caxeng-primary) 0%, #2A4F73 100%);
    color: var(--caxeng-light-text);
    text-align: center;
    padding: 80px 0;
}

.page-industry-news-caxeng-responsible-gambling__cta-final-content .page-industry-news-caxeng-responsible-gambling__section-title {
    color: var(--caxeng-light-text);
}

.page-industry-news-caxeng-responsible-gambling__cta-final-content .page-industry-news-caxeng-responsible-gambling__section-title::after {
    background-color: var(--caxeng-secondary);
}

.page-industry-news-caxeng-responsible-gambling__cta-final .page-industry-news-caxeng-responsible-gambling__description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-industry-news-caxeng-responsible-gambling__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news-caxeng-responsible-gambling__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-caxeng-responsible-gambling__hero-subtitle {
        font-size: 1.3em;
    }
    .page-industry-news-caxeng-responsible-gambling__section-title {
        font-size: 2em;
    }
    .page-industry-news-caxeng-responsible-gambling__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-industry-news-caxeng-responsible-gambling__content-wrapper--reversed {
        flex-direction: column;
    }
    .page-industry-news-caxeng-responsible-gambling__image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-industry-news-caxeng-responsible-gambling__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-caxeng-responsible-gambling__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-caxeng-responsible-gambling__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news-caxeng-responsible-gambling__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-industry-news-caxeng-responsible-gambling__section {
        padding: 40px 0;
    }
    .page-industry-news-caxeng-responsible-gambling__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-industry-news-caxeng-responsible-gambling__grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news-caxeng-responsible-gambling__grid-item,
    .page-industry-news-caxeng-responsible-gambling__list-item,
    .page-industry-news-caxeng-responsible-gambling__faq-item {
        padding: 20px;
    }
    .page-industry-news-caxeng-responsible-gambling__cta-final {
        padding: 60px 0;
    }
    .page-industry-news-caxeng-responsible-gambling__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-caxeng-responsible-gambling__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-caxeng-responsible-gambling__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-caxeng-responsible-gambling__btn {
        font-size: 1em;
        padding: 12px 25px;
        width: 90%;
    }
    .page-industry-news-caxeng-responsible-gambling__section-title {
        font-size: 1.5em;
    }
}