/* style/industry-news-regulatory-updates.css */
.page-industry-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Dark background */
}

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

.page-industry-news-regulatory-updates__hero {
    background: linear-gradient(135deg, #1A202C, #3A455C); /* Dark gradient */
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-industry-news-regulatory-updates__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Wealth Gold for titles */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__hero-subtitle {
    font-size: 1.3em;
    color: #e5dfd3;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-regulatory-updates__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Wealth Gold for CTA */
    color: #1A202C; /* Dark text on gold button */
    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: none;
    cursor: pointer;
}

.page-industry-news-regulatory-updates__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-industry-news-regulatory-updates__content-section {
    padding: 60px 0;
}

.page-industry-news-regulatory-updates__article {
    background-color: #2c3447; /* Slightly lighter dark for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory-updates__intro-paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #d0d0d0;
}

.page-industry-news-regulatory-updates__section-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    line-height: 1.3;
}

.page-industry-news-regulatory-updates__subsection-title {
    font-size: 1.5em;
    color: #FFD700; /* Wealth Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #4a546e;
}

.page-industry-news-regulatory-updates__article p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-industry-news-regulatory-updates__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e5dfd3;
}

.page-industry-news-regulatory-updates__list li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1em;
}

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

.page-industry-news-regulatory-updates__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #1A202C; /* Primary dark for CTA background */
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.page-industry-news-regulatory-updates__cta-text {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__cta-button--bottom {
    padding: 18px 35px;
    font-size: 1.2em;
}

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

    .page-industry-news-regulatory-updates__hero-subtitle,
    .page-industry-news-regulatory-updates__intro-paragraph {
        font-size: 1em;
    }

    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.6em;
    }

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

    .page-industry-news-regulatory-updates__article {
        padding: 20px;
    }

    .page-industry-news-regulatory-updates__cta-text {
        font-size: 1.2em;
    }

    .page-industry-news-regulatory-updates__cta-button--bottom {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__hero {
        padding: 50px 0;
    }

    .page-industry-news-regulatory-updates__hero-title {
        font-size: 1.8em;
    }

    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 0.9em;
    }

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

    .page-industry-news-regulatory-updates__content-section {
        padding: 30px 0;
    }

    .page-industry-news-regulatory-updates__article {
        padding: 15px;
    }

    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.4em;
    }

    .page-industry-news-regulatory-updates__subsection-title {
        font-size: 1.1em;
    }

    .page-industry-news-regulatory-updates__cta-text {
        font-size: 1em;
    }

    .page-industry-news-regulatory-updates__cta-button--bottom {
        padding: 12px 20px;
        font-size: 1em;
    }
}