/* style/gambling-news-regulatory-updates.css */
.page-gambling-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-gambling-news-regulatory-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gambling-news-regulatory-updates__hero-section {
    background: linear-gradient(135deg, #004AAD 0%, #0028ff 100%); /* Deep blue to a slightly brighter blue */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gambling-news-regulatory-updates__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #FFD700;
    opacity: 0.1;
    border-radius: 50%;
    animation: floatEffect 10s infinite ease-in-out;
}

.page-gambling-news-regulatory-updates__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: #FFD700;
    opacity: 0.15;
    border-radius: 50%;
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

.page-gambling-news-regulatory-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gambling-news-regulatory-updates__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-gambling-news-regulatory-updates__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #004AAD; /* Deep blue text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-gambling-news-regulatory-updates__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-regulatory-updates__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-gambling-news-regulatory-updates__article {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-gambling-news-regulatory-updates__section-title {
    font-size: 2.2em;
    color: #004AAD;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-gambling-news-regulatory-updates__subsection-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-gambling-news-regulatory-updates__article p {
    margin-bottom: 1em;
    color: #555;
    font-size: 1.05em;
}

.page-gambling-news-regulatory-updates__article strong {
    color: #004AAD;
}

.page-gambling-news-regulatory-updates__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gambling-news-regulatory-updates__list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.page-gambling-news-regulatory-updates__list li {
    margin-bottom: 10px;
    color: #444;
    font-size: 1.05em;
}

.page-gambling-news-regulatory-updates__cta-group {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-gambling-news-regulatory-updates__cta-button--primary {
    background-color: #004AAD;
    color: #FFD700;
    border-color: #004AAD;
}

.page-gambling-news-regulatory-updates__cta-button--primary:hover {
    background-color: #003780;
    border-color: #003780;
}

.page-gambling-news-regulatory-updates__cta-button--secondary {
    background-color: #FFD700;
    color: #004AAD;
    border-color: #FFD700;
}

.page-gambling-news-regulatory-updates__cta-button--secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gambling-news-regulatory-updates__hero-title {
        font-size: 2.5em;
    }

    .page-gambling-news-regulatory-updates__hero-subtitle {
        font-size: 1.2em;
    }

    .page-gambling-news-regulatory-updates__section-title {
        font-size: 1.8em;
    }

    .page-gambling-news-regulatory-updates__subsection-title {
        font-size: 1.5em;
    }

    .page-gambling-news-regulatory-updates__article {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-regulatory-updates__hero-title {
        font-size: 2em;
    }

    .page-gambling-news-regulatory-updates__hero-subtitle {
        font-size: 1em;
    }

    .page-gambling-news-regulatory-updates__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gambling-news-regulatory-updates__section-title {
        font-size: 1.5em;
    }

    .page-gambling-news-regulatory-updates__subsection-title {
        font-size: 1.3em;
    }

    .page-gambling-news-regulatory-updates__article {
        padding: 15px;
    }
    .page-gambling-news-regulatory-updates__cta-group {
        flex-direction: column;
    }
}