/* style/gambling-news-industry-updates.css */
.page-gambling-news-industry-updates {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1A237E; /* Primary dark blue */
}

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

.page-gambling-news-industry-updates__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0D144F 100%); /* Darker gradient */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-gambling-news-industry-updates__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFB300; /* Auxiliary color for emphasis */
    line-height: 1.2;
    font-weight: bold;
}

.page-gambling-news-industry-updates__hero-title .highlight {
    color: #ffffff;
}

.page-gambling-news-industry-updates__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gambling-news-industry-updates__btn--primary {
    background-color: #FFB300;
    color: #1A237E;
}

.page-gambling-news-industry-updates__btn--primary:hover {
    background-color: #e59400;
    transform: translateY(-3px);
}

.page-gambling-news-industry-updates__btn--secondary {
    background-color: transparent;
    color: #FFB300;
    border: 2px solid #FFB300;
    margin-left: 20px;
}

.page-gambling-news-industry-updates__btn--secondary:hover {
    background-color: #FFB300;
    color: #1A237E;
    transform: translateY(-3px);
}

.page-gambling-news-industry-updates__content-section {
    padding: 60px 0;
    background-color: #262f8b; /* Slightly lighter dark blue */
}

.page-gambling-news-industry-updates__article {
    background-color: #1A237E; /* Primary dark blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gambling-news-industry-updates__section-title {
    font-size: 2.5em;
    color: #FFB300;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #FFB300;
    padding-bottom: 15px;
}

.page-gambling-news-industry-updates__sub-section-title {
    font-size: 1.8em;
    color: #FFB300;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFB300;
    padding-left: 15px;
}

.page-gambling-news-industry-updates__article p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-gambling-news-industry-updates__article p .highlight {
    color: #FFB300;
    font-weight: bold;
}

.page-gambling-news-industry-updates__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-industry-updates__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gambling-news-industry-updates__list li {
    background-color: #0D144F; /* Darker blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
    border-left: 4px solid #FFB300;
    transition: background-color 0.3s ease;
}

.page-gambling-news-industry-updates__list li:hover {
    background-color: #1A237E;
}

.page-gambling-news-industry-updates__list li strong {
    color: #FFB300;
}

.page-gambling-news-industry-updates__cta-group {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-gambling-news-industry-updates__related-links {
    padding: 60px 0;
    background-color: #0D144F; /* Even darker blue */
    text-align: center;
}

.page-gambling-news-industry-updates__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gambling-news-industry-updates__link-card {
    background-color: #1A237E; /* Primary dark blue */
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-news-industry-updates__link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gambling-news-industry-updates__link-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #FFB300;
}

.page-gambling-news-industry-updates__link-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFB300;
}

.page-gambling-news-industry-updates__link-description {
    font-size: 0.95em;
    color: #c0c0c0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gambling-news-industry-updates__hero-title {
        font-size: 2.5em;
    }
    .page-gambling-news-industry-updates__hero-subtitle {
        font-size: 1.1em;
    }
    .page-gambling-news-industry-updates__section-title {
        font-size: 2em;
    }
    .page-gambling-news-industry-updates__sub-section-title {
        font-size: 1.6em;
    }
    .page-gambling-news-industry-updates__article {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-gambling-news-industry-updates__hero {
        padding: 60px 0;
    }
    .page-gambling-news-industry-updates__hero-title {
        font-size: 2em;
    }
    .page-gambling-news-industry-updates__hero-subtitle {
        font-size: 1em;
    }
    .page-gambling-news-industry-updates__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-gambling-news-industry-updates__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-gambling-news-industry-updates__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-gambling-news-industry-updates__section-title {
        font-size: 1.8em;
    }
    .page-gambling-news-industry-updates__sub-section-title {
        font-size: 1.4em;
    }
    .page-gambling-news-industry-updates__article p {
        font-size: 1em;
    }
    .page-gambling-news-industry-updates__link-card {
        padding: 20px;
    }
    .page-gambling-news-industry-updates__link-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-industry-updates__hero-title {
        font-size: 1.8em;
    }
    .page-gambling-news-industry-updates__hero-subtitle {
        font-size: 0.9em;
    }
    .page-gambling-news-industry-updates__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-gambling-news-industry-updates__section-title {
        font-size: 1.5em;
    }
    .page-gambling-news-industry-updates__sub-section-title {
        font-size: 1.2em;
    }
    .page-gambling-news-industry-updates__article {
        padding: 20px;
    }
    .page-gambling-news-industry-updates__list li {
        font-size: 0.95em;
    }
    .page-gambling-news-industry-updates__links-grid {
        grid-template-columns: 1fr;
    }
}