/* style/industry-news-regulatory-updates.css */

.page-industry-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Text on dark background */
    background-color: #0d123d; /* A slightly lighter variant of #1A237E for overall background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-industry-news-regulatory-updates__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0d123d 100%); /* Dark indigo to a darker variant */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-industry-news-regulatory-updates__hero-subtitle {
    font-size: 1.4em;
    color: #e0e0e0; /* Light gray for subtitle */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-regulatory-updates__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

/* Content Section */
.page-industry-news-regulatory-updates__content-section {
    padding: 60px 0;
    background-color: #0d123d;
}

.page-industry-news-regulatory-updates__article {
    background-color: #1A237E; /* Dark indigo background for articles */
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #FFFFFF; /* White text on dark indigo */
}

.page-industry-news-regulatory-updates__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-industry-news-regulatory-updates__subsection-title {
    font-size: 1.8em;
    color: #b39700; /* Darker gold for subsections, for contrast */
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-industry-news-regulatory-updates__article p {
    margin-bottom: 1em;
    font-size: 1.1em;
}

.page-industry-news-regulatory-updates__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
}

.page-industry-news-regulatory-updates__article li {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

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

.page-industry-news-regulatory-updates__image--left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__article::after {
    content: "";
    display: table;
    clear: both;
}

/* Call to Action */
.page-industry-news-regulatory-updates__call-to-action {
    text-align: center;
    background-color: #FFD700; /* Gold background for CTA */
    padding: 50px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #1A237E; /* Dark indigo text on gold */
}

.page-industry-news-regulatory-updates__call-to-action .page-industry-news-regulatory-updates__section-title {
    color: #1A237E; /* Dark indigo title on gold */
    margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #1A237E; /* Dark indigo paragraph on gold */
}

.page-industry-news-regulatory-updates__button {
    display: inline-block;
    background-color: #1A237E; /* Dark indigo button */
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 10px;
    border: 2px solid #1A237E;
}

.page-industry-news-regulatory-updates__button:hover {
    background-color: #0d123d; /* Darker indigo on hover */
    color: #FFFFFF; /* White text on hover */
    border-color: #0d123d;
}

.page-industry-news-regulatory-updates__button--secondary {
    background-color: transparent;
    color: #1A237E;
    border-color: #1A237E;
}

.page-industry-news-regulatory-updates__button--secondary:hover {
    background-color: #1A237E;
    color: #FFD700;
    border-color: #1A237E;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__subsection-title {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__image--left,
    .page-industry-news-regulatory-updates__image--right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-industry-news-regulatory-updates__hero {
        padding: 60px 0 30px;
    }
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 2em;
    }
    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-regulatory-updates__content-section {
        padding: 40px 0;
    }
    .page-industry-news-regulatory-updates__article {
        padding: 30px;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__subsection-title {
        font-size: 1.3em;
    }
    .page-industry-news-regulatory-updates__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 0;
    }
    .page-industry-news-regulatory-updates__call-to-action {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .page-industry-news-regulatory-updates__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-regulatory-updates__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__article {
        padding: 20px;
    }
    .page-industry-news-regulatory-updates__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-regulatory-updates__subsection-title {
        font-size: 1.2em;
    }
    .page-industry-news-regulatory-updates__article p,
    .page-industry-news-regulatory-updates__article li {
        font-size: 1em;
    }
    .page-industry-news-regulatory-updates__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}