/* style/news-regulatory-updates.css */
.page-news-regulatory-updates {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #0A2239; /* Dark blue background */
    line-height: 1.6;
}

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

.page-news-regulatory-updates__hero {
    background: linear-gradient(135deg, #0A2239, #1a4a75); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-news-regulatory-updates__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-news-regulatory-updates__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-regulatory-updates__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #F0F0F0;
    position: relative;
    z-index: 1;
}

.page-news-regulatory-updates__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2239; /* Dark blue text on gold */
    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;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

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

.page-news-regulatory-updates__section {
    padding: 60px 0;
}

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

.page-news-regulatory-updates__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-news-regulatory-updates__intro p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-news-regulatory-updates__content .page-news-regulatory-updates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-news-regulatory-updates__grid-item {
    background-color: #1a3c5a; /* Slightly lighter blue for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-regulatory-updates__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-regulatory-updates__image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-news-regulatory-updates__image--full-width {
    max-width: 100%;
    margin-bottom: 30px;
}

.page-news-regulatory-updates__item-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for item titles */
    margin-bottom: 15px;
}

.page-news-regulatory-updates__grid-item p {
    color: #CCCCCC;
    text-align: left;
}

.page-news-regulatory-updates__list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-news-regulatory-updates__list li {
    background-color: #1a3c5a;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    color: #E0E0E0;
    font-size: 1.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news-regulatory-updates__list li strong {
    color: #FFD700;
}

.page-news-regulatory-updates__callout-box {
    background-color: #0f304d; /* Slightly different dark blue */
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.page-news-regulatory-updates__callout-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for callout titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-news-regulatory-updates__callout-box p {
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-news-regulatory-updates__cta-section {
    text-align: center;
    background-color: #1a3c5a;
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-news-regulatory-updates__cta-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-news-regulatory-updates__cta-section p {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 40px;
}

.page-news-regulatory-updates__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-regulatory-updates__cta-button--primary {
    background-color: #FFD700;
    color: #0A2239;
}

.page-news-regulatory-updates__cta-button--secondary {
    background-color: #0A2239;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-news-regulatory-updates__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    transform: translateY(-3px);
}

.page-news-regulatory-updates__related-articles {
    background-color: #0A2239;
    padding: 80px 0;
}

.page-news-regulatory-updates__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news-regulatory-updates__article-card {
    background-color: #1a3c5a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news-regulatory-updates__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-regulatory-updates__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-news-regulatory-updates__article-card h3 {
    font-size: 1.4em;
    margin: 20px 20px 10px;
    color: #FFD700;
}

.page-news-regulatory-updates__article-card h3 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-regulatory-updates__article-card h3 a:hover {
    color: #e6c200;
}

.page-news-regulatory-updates__article-excerpt {
    color: #CCCCCC;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news-regulatory-updates__read-more {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2239;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
}

.page-news-regulatory-updates__read-more:hover {
    background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-regulatory-updates__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-news-regulatory-updates__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-news-regulatory-updates__hero {
        padding: 80px 0;
    }

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

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

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

    .page-news-regulatory-updates__section {
        padding: 40px 0;
    }

    .page-news-regulatory-updates__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-news-regulatory-updates__grid-item {
        padding: 20px;
    }

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

    .page-news-regulatory-updates__callout-box {
        padding: 30px;
    }

    .page-news-regulatory-updates__callout-title {
        font-size: 1.5em;
    }

    .page-news-regulatory-updates__cta-section {
        padding: 40px 20px;
    }

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

    .page-news-regulatory-updates__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-news-regulatory-updates__articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-news-regulatory-updates__hero-title {
        font-size: 1.8em;
    }

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

    .page-news-regulatory-updates__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-news-regulatory-updates__list li {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-news-regulatory-updates__cta-title {
        font-size: 1.5em;
    }
}