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

/* Base styles for the page content area */
.page-gambling-news-industry-news {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for readability on light backgrounds */
    background-color: #f8f9fa; /* Light grey background */
}

/* Container for content */
.page-gambling-news-industry-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-gambling-news-industry-news__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #ffc107; /* Auxiliary color accent */
}

.page-gambling-news-industry-news__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.page-gambling-news-industry-news__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styling */
.page-gambling-news-industry-news__section {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.page-gambling-news-industry-news__section--alt {
    background-color: #e9f5ff; /* Lighter blue variant for alternating sections */
}

.page-gambling-news-industry-news__section--cta {
    background-color: #007bff; /* Main brand color for CTA */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-gambling-news-industry-news__heading {
    font-size: 2.2em;
    color: #007bff; /* Main brand color for headings */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gambling-news-industry-news__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Auxiliary color for underline */
    border-radius: 2px;
}

.page-gambling-news-industry-news__heading--cta {
    color: #ffffff;
}

.page-gambling-news-industry-news__heading--cta::after {
    background-color: #ffffff;
}

.page-gambling-news-industry-news__sub-heading {
    font-size: 1.6em;
    color: #0056b3; /* Slightly darker blue for subheadings */
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Content Blocks */
.page-gambling-news-industry-news__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Align content to the top */
    gap: 30px;
    margin-top: 30px;
}

.page-gambling-news-industry-news__content-block p {
    flex: 1;
    min-width: 300px; /* Ensure paragraphs don't get too narrow */
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #495057; /* Slightly lighter dark grey for body text */
}

.page-gambling-news-industry-news__content-block p strong {
    color: #007bff; /* Emphasize keywords with main color */
}

/* Images */
.page-gambling-news-industry-news__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-gambling-news-industry-news__content-block .page-gambling-news-industry-news__image {
    flex: 0 0 auto; /* Don't grow or shrink */
}

.page-gambling-news-industry-news__image--right {
    order: 1; /* Place image on the right in flex layout */
}

/* Lists */
.page-gambling-news-industry-news__list,
.page-gambling-news-industry-news__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #495057;
}

.page-gambling-news-industry-news__numbered-list {
    list-style-type: decimal;
}

.page-gambling-news-industry-news__list li,
.page-gambling-news-industry-news__numbered-list li {
    margin-bottom: 10px;
}

/* Buttons */
.page-gambling-news-industry-news__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-gambling-news-industry-news__button--primary {
    background-color: #ffc107; /* Auxiliary color for primary action */
    color: #0056b3; /* Darker blue for text on yellow for contrast */
    border: 2px solid #ffc107;
}

.page-gambling-news-industry-news__button--primary:hover {
    background-color: #e0a800; /* Darker yellow on hover */
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-gambling-news-industry-news__button--secondary {
    background-color: transparent;
    color: #007bff; /* Main brand color for text */
    border: 2px solid #007bff;
}

.page-gambling-news-industry-news__button--secondary:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-gambling-news-industry-news__button--large {
    padding: 15px 35px;
    font-size: 1.3em;
}

/* CTA Block within content */
.page-gambling-news-industry-news__cta-block {
    background-color: #ffffff;
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-gambling-news-industry-news__cta-block p {
    font-size: 1.2em;
    color: #0056b3;
    margin-bottom: 20px;
}

.page-gambling-news-industry-news__text--cta {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

/* Flex container for CTA section */
.page-gambling-news-industry-news__container--flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gambling-news-industry-news__title {
        font-size: 2.2em;
    }
    .page-gambling-news-industry-news__heading {
        font-size: 1.8em;
    }
    .page-gambling-news-industry-news__sub-heading {
        font-size: 1.4em;
    }
    .page-gambling-news-industry-news__content-block {
        flex-direction: column;
        align-items: center;
    }
    .page-gambling-news-industry-news__image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .page-gambling-news-industry-news__image--right {
        order: initial; /* Reset order for small screens */
    }
}

@media (max-width: 768px) {
    .page-gambling-news-industry-news__hero {
        padding: 60px 0;
    }
    .page-gambling-news-industry-news__title {
        font-size: 1.8em;
    }
    .page-gambling-news-industry-news__subtitle {
        font-size: 1em;
    }
    .page-gambling-news-industry-news__section {
        padding: 40px 0;
    }
    .page-gambling-news-industry-news__heading {
        font-size: 1.6em;
    }
    .page-gambling-news-industry-news__sub-heading {
        font-size: 1.2em;
    }
    .page-gambling-news-industry-news__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-gambling-news-industry-news__button--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-gambling-news-industry-news__hero {
        padding: 40px 0;
    }
    .page-gambling-news-industry-news__title {
        font-size: 1.5em;
    }
    .page-gambling-news-industry-news__heading {
        font-size: 1.4em;
    }
    .page-gambling-news-industry-news__sub-heading {
        font-size: 1.1em;
    }
    .page-gambling-news-industry-news__container {
        padding: 0 15px;
    }
}