/* style/industry-news-trends-latest-regulation.css */

/* Variables for colors */
:root {
    --page-industry-news-trends-latest-regulation-primary-color: #1A237E; /* Deep Royal Blue */
    --page-industry-news-trends-latest-regulation-accent-color: #FFD700; /* Gold */
    --page-industry-news-trends-latest-regulation-text-light: #FFFFFF; /* White */
    --page-industry-news-trends-latest-regulation-text-dark: #212121; /* Dark Gray for readability */
    --page-industry-news-trends-latest-regulation-bg-light: #F5F5F5; /* Light Gray */
    --page-industry-news-trends-latest-regulation-bg-dark: #2C3E50; /* Slightly lighter than primary for contrast */
}

.page-industry-news-trends-latest-regulation {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-industry-news-trends-latest-regulation-text-dark); /* Default text color for light backgrounds */
    background-color: var(--page-industry-news-trends-latest-regulation-bg-light);
}

.page-industry-news-trends-latest-regulation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-industry-news-trends-latest-regulation__hero {
    background: linear-gradient(135deg, var(--page-industry-news-trends-latest-regulation-primary-color) 0%, #3F51B5 100%); /* Gradient with primary color */
    color: var(--page-industry-news-trends-latest-regulation-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-industry-news-trends-latest-regulation__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-industry-news-trends-latest-regulation__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-industry-news-trends-latest-regulation-accent-color); /* Gold title for impact */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-trends-latest-regulation__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.page-industry-news-trends-latest-regulation__hero-cta-btn {
    display: inline-block;
    background-color: var(--page-industry-news-trends-latest-regulation-accent-color);
    color: var(--page-industry-news-trends-latest-regulation-primary-color); /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-trends-latest-regulation__hero-cta-btn:hover {
    background-color: #FFC107; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news-trends-latest-regulation__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2; /* Subtle background image */
}

.page-industry-news-trends-latest-regulation__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-industry-news-trends-latest-regulation__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-industry-news-trends-latest-regulation__section:last-of-type {
    border-bottom: none;
}

.page-industry-news-trends-latest-regulation__section-title {
    font-size: 2.2em;
    color: var(--page-industry-news-trends-latest-regulation-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news-trends-latest-regulation__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-industry-news-trends-latest-regulation-text-dark);
}

.page-industry-news-trends-latest-regulation__paragraph .keyword {
    color: var(--page-industry-news-trends-latest-regulation-primary-color);
    font-weight: bold;
}

/* Article Styling */
.page-industry-news-trends-latest-regulation__article {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    background-color: var(--page-industry-news-trends-latest-regulation-text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.page-industry-news-trends-latest-regulation__article:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image and text */
}

.page-industry-news-trends-latest-regulation__article-title {
    font-size: 1.8em;
    color: var(--page-industry-news-trends-latest-regulation-primary-color);
    margin-bottom: 20px;
    width: 100%;
    text-align: center; /* Center title above image/text */
}

.page-industry-news-trends-latest-regulation__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__paragraph {
    flex: 1;
    padding: 0 20px;
    text-align: justify;
}

.page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__image--left {
    margin-right: 30px;
}

.page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__image--right {
    margin-left: 30px;
}

/* List Styling */
.page-industry-news-trends-latest-regulation__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--page-industry-news-trends-latest-regulation-text-dark);
}

.page-industry-news-trends-latest-regulation__list li {
    margin-bottom: 10px;
}

.page-industry-news-trends-latest-regulation__list li strong {
    color: var(--page-industry-news-trends-latest-regulation-primary-color);
}

/* Call to Action Section */
.page-industry-news-trends-latest-regulation__cta {
    background-color: var(--page-industry-news-trends-latest-regulation-primary-color);
    color: var(--page-industry-news-trends-latest-regulation-text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-industry-news-trends-latest-regulation__cta-content {
    position: relative;
    z-index: 2;
}

.page-industry-news-trends-latest-regulation__cta .page-industry-news-trends-latest-regulation__section-title {
    color: var(--page-industry-news-trends-latest-regulation-accent-color);
    margin-bottom: 25px;
}

.page-industry-news-trends-latest-regulation__cta .page-industry-news-trends-latest-regulation__paragraph {
    color: var(--page-industry-news-trends-latest-regulation-text-light);
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-industry-news-trends-latest-regulation__cta-button {
    display: inline-block;
    background-color: var(--page-industry-news-trends-latest-regulation-accent-color);
    color: var(--page-industry-news-trends-latest-regulation-primary-color);
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-trends-latest-regulation__cta-button:hover {
    background-color: #FFC107;
    transform: translateY(-5px);
}

.page-industry-news-trends-latest-regulation__image--cta {
    margin-top: 40px;
    max-width: 600px;
    opacity: 0.8; /* Slightly transparent for background feel */
}

/* Scroll-to-top button */
.page-industry-news-trends-latest-regulation__scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--page-industry-news-trends-latest-regulation-accent-color);
    color: var(--page-industry-news-trends-latest-regulation-primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    line-height: 50px; /* Center the arrow vertically */
    text-align: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.page-industry-news-trends-latest-regulation__scroll-to-top:hover {
    background-color: #FFC107; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-industry-news-trends-latest-regulation__article-title {
        text-align: left;
    }
    .page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__image {
        width: 45%;
        margin: 0; /* Remove auto margin for specific alignment */
    }
    .page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__paragraph {
        width: 55%;
        padding: 0 30px;
    }
    .page-industry-news-trends-latest-regulation__article:nth-child(even) .page-industry-news-trends-latest-regulation__image {
        margin-left: 30px;
        margin-right: 0;
    }
    .page-industry-news-trends-latest-regulation__article:nth-child(odd) .page-industry-news-trends-latest-regulation__image {
        margin-right: 30px;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .page-industry-news-trends-latest-regulation__hero {
        padding: 80px 20px;
    }
    .page-industry-news-trends-latest-regulation__hero-title {
        font-size: 2em;
    }
    .page-industry-news-trends-latest-regulation__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-trends-latest-regulation__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-trends-latest-regulation__article {
        flex-direction: column;
        text-align: center;
    }
    .page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__image {
        margin-bottom: 20px;
    }
    .page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__paragraph {
        padding: 0;
    }
    .page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__image--left,
    .page-industry-news-trends-latest-regulation__article .page-industry-news-trends-latest-regulation__image--right {
        margin: 20px auto; /* Reset margins for mobile */
    }
    .page-industry-news-trends-latest-regulation__cta .page-industry-news-trends-latest-regulation__paragraph {
        font-size: 1em;
    }
    .page-industry-news-trends-latest-regulation__cta-button {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}