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

/* Biến CSS */
:root {
    --page-news-regulatory-updates-primary-color: #007bff;
    --page-news-regulatory-updates-secondary-color: #ffc107;
    --page-news-regulatory-updates-text-dark: #333;
    --page-news-regulatory-updates-text-light: #fff;
    --page-news-regulatory-updates-background-light: #f8f9fa;
    --page-news-regulatory-updates-background-dark: #0056b3;
    --page-news-regulatory-updates-border-color: #e9ecef;
}

.page-news-regulatory-updates {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-news-regulatory-updates-text-dark);
    background-color: var(--page-news-regulatory-updates-background-light);
}

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

.page-news-regulatory-updates__hero {
    background: linear-gradient(135deg, var(--page-news-regulatory-updates-primary-color), var(--page-news-regulatory-updates-background-dark));
    color: var(--page-news-regulatory-updates-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-news-regulatory-updates__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-news-regulatory-updates__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--page-news-regulatory-updates-text-light);
}

.page-news-regulatory-updates__hero-title a,
.page-news-regulatory-updates__hero-description a {
    color: var(--page-news-regulatory-updates-secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-regulatory-updates__hero-title a:hover,
.page-news-regulatory-updates__hero-description a:hover {
    color: #ffd766; /* Slightly darker yellow for hover */
}

.page-news-regulatory-updates__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-news-regulatory-updates__cta-button {
    display: inline-block;
    background-color: var(--page-news-regulatory-updates-secondary-color);
    color: var(--page-news-regulatory-updates-text-dark);
    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;
    border: none;
    cursor: pointer;
}

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

.page-news-regulatory-updates__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.page-news-regulatory-updates__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

.page-news-regulatory-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-news-regulatory-updates-border-color);
}

.page-news-regulatory-updates__section:last-of-type {
    border-bottom: none;
}

.page-news-regulatory-updates__section-title {
    font-size: 2.2em;
    color: var(--page-news-regulatory-updates-primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-news-regulatory-updates__section-title a {
    color: var(--page-news-regulatory-updates-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-regulatory-updates__section-title a:hover {
    color: var(--page-news-regulatory-updates-background-dark);
}

.page-news-regulatory-updates__section p {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-news-regulatory-updates__section p a {
    color: var(--page-news-regulatory-updates-primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-news-regulatory-updates__section p a:hover {
    text-decoration: underline;
}

.page-news-regulatory-updates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-regulatory-updates__card {
    background-color: var(--page-news-regulatory-updates-text-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-news-regulatory-updates__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-news-regulatory-updates__card-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.page-news-regulatory-updates__card-title {
    font-size: 1.4em;
    color: var(--page-news-regulatory-updates-primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-regulatory-updates__card p {
    font-size: 0.95em;
    color: #555;
    text-align: center;
}

.page-news-regulatory-updates__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-news-regulatory-updates__list li {
    background-color: var(--page-news-regulatory-updates-text-light);
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
}

.page-news-regulatory-updates__list li strong {
    color: var(--page-news-regulatory-updates-primary-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.page-news-regulatory-updates__list li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1;
    color: var(--page-news-regulatory-updates-secondary-color);
}

.page-news-regulatory-updates__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-news-regulatory-updates__cta-button--bottom {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

    .page-news-regulatory-updates__hero-description {
        font-size: 1.1em;
    }

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

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

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

    .page-news-regulatory-updates__hero-description {
        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;
    }

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

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

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

    .page-news-regulatory-updates__list li::before {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-news-regulatory-updates__hero {
        min-height: 300px;
    }
    .page-news-regulatory-updates__hero-title {
        font-size: 1.8em;
    }
    .page-news-regulatory-updates__hero-description {
        font-size: 0.95em;
    }
    .page-news-regulatory-updates__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-news-regulatory-updates__section-title {
        font-size: 1.6em;
    }
    .page-news-regulatory-updates__section p {
        font-size: 0.95em;
    }
    .page-news-regulatory-updates__list li {
        font-size: 0.95em;
    }
}