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

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

/* Hero Section */
.page-industry-news__hero-section {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-industry-news__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
    margin: 10px;
}

.page-industry-news__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-industry-news__btn--primary:hover {
    background-color: #e6c200;
    color: #001a33;
}

.page-industry-news__btn--secondary {
    background-color: #003366; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
    background-color: #002244;
    color: #e6c200;
}

/* Section Styling */
.page-industry-news__intro-section, 
.page-industry-news__content-section, 
.page-industry-news__market-analysis-section, 
.page-industry-news__regulatory-section, 
.page-industry-news__tech-innovation-section, 
.page-industry-news__major-events-section, 
.page-industry-news__future-outlook-section, 
.page-industry-news__related-articles {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-industry-news__intro-section {
    background-color: #f0f4f8;
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-industry-news__sub-section-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-industry-news__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-industry-news__paragraph strong {
    color: #003366;
}

.page-industry-news__list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-industry-news__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.page-industry-news__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold checkmark */
    font-size: 1.2em;
    line-height: 1;
}

/* Image Styling */
.page-industry-news__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-industry-news__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-industry-news__image:hover {
    transform: translateY(-5px);
}

/* Image alignment for content sections */
.page-industry-news__image-wrapper--left {
    float: left;
    margin-right: 30px;
    max-width: 40%;
}

.page-industry-news__image-wrapper--right {
    float: right;
    margin-left: 30px;
    max-width: 40%;
}

/* Clearfix for floated images */
.page-industry-news__content-section::after,
.page-industry-news__market-analysis-section::after,
.page-industry-news__regulatory-section::after,
.page-industry-news__tech-innovation-section::after,
.page-industry-news__major-events-section::after,
.page-industry-news__future-outlook-section::after {
    content: "";
    display: table;
    clear: both;
}

/* Related Articles Grid */
.page-industry-news__related-articles {
    background-color: #eef4f8;
}

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

.page-industry-news__article-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-news__article-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-industry-news__article-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-industry-news__article-title a {
    text-decoration: none;
    color: #003366;
    transition: color 0.3s ease;
}

.page-industry-news__article-title a:hover {
    color: #FFD700;
}

.page-industry-news__article-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news__section-title {
        font-size: 2em;
    }
    .page-industry-news__sub-section-title {
        font-size: 1.6em;
    }
    .page-industry-news__image-wrapper--left,
    .page-industry-news__image-wrapper--right {
        float: none;
        margin: 20px auto;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero-section {
        padding: 80px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-news__sub-section-title {
        font-size: 1.4em;
    }
    .page-industry-news__paragraph,
    .page-industry-news__list-item {
        font-size: 1em;
    }
    .page-industry-news__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-industry-news__article-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-section {
        padding: 60px 0;
    }
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news__section-title {
        font-size: 1.6em;
    }
    .page-industry-news__sub-section-title {
        font-size: 1.2em;
    }
    .page-industry-news__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}