/* style/industry-news-latest-regulations.css */
.page-industry-news-latest-regulations {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-industry-news-latest-regulations__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-industry-news-latest-regulations__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-industry-news-latest-regulations__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-industry-news-latest-regulations__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-industry-news-latest-regulations__section-title {
    font-size: 2.2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
}

.page-industry-news-latest-regulations__sub-section-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news-latest-regulations__article p {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1em;
}

.page-industry-news-latest-regulations__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333;
}

.page-industry-news-latest-regulations__article ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.page-industry-news-latest-regulations__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-regulations__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px 15px;
    cursor: pointer;
}

.page-industry-news-latest-regulations__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-industry-news-latest-regulations__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-latest-regulations__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-news-latest-regulations__btn--secondary:hover {
    background-color: #071a47;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(10, 36, 99, 0.4);
}

.page-industry-news-latest-regulations__cta-group {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-latest-regulations__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news-latest-regulations__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-latest-regulations__sub-section-title {
        font-size: 1.4em;
    }

    .page-industry-news-latest-regulations__article {
        padding: 20px;
    }

    .page-industry-news-latest-regulations__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 5px;
    }

    .page-industry-news-latest-regulations__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-regulations__hero-title {
        font-size: 2em;
    }

    .page-industry-news-latest-regulations__hero-section {
        padding: 60px 0;
    }

    .page-industry-news-latest-regulations__article p,
    .page-industry-news-latest-regulations__article ul li {
        font-size: 0.95em;
    }

    .page-industry-news-latest-regulations__btn {
        width: 90%;
        margin: 10px auto;
        display: block;
    }
}