/* style/index-latest-industry-news.css */

.page-index-latest-industry-news {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Primary dark blue background */
}

.page-index-latest-industry-news .hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A6A 100%); /* Dark blue gradient */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    border-bottom: 2px solid #FFD700;
}

.page-index-latest-industry-news .hero-content {
    max-width: 800px;
}

.page-index-latest-industry-news .hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-index-latest-industry-news .hero-description {
    font-size: 1.3em;
    color: #B0C4DE; /* Lighter blue-gray for description */
    margin-bottom: 30px;
}

.page-index-latest-industry-news .hero-image-container {
    width: 100%;
    max-width: 900px;
}

.page-index-latest-industry-news .hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-index-latest-industry-news .content-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #0A2342;
}

.page-index-latest-industry-news .container {
    max-width: 960px;
    margin: 0 auto;
}

.page-index-latest-industry-news .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main section titles */
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-index-latest-industry-news .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-latest-industry-news .subsection-title {
    font-size: 1.8em;
    color: #B0C4DE; /* Lighter blue-gray for subsections */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    font-weight: bold;
}

.page-index-latest-industry-news p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-index-latest-industry-news p strong {
    color: #FFD700;
}

.page-index-latest-industry-news a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-latest-industry-news a:hover {
    color: #FFE873;
    text-decoration: underline;
}

.page-index-latest-industry-news .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    margin: 10px;
}

.page-index-latest-industry-news .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index-latest-industry-news .btn-primary:hover {
    background-color: #FFE873;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-index-latest-industry-news .btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-index-latest-industry-news .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-index-latest-industry-news .cta-group {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-index-latest-industry-news .hero-section {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-index-latest-industry-news .hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-index-latest-industry-news .hero-image-container {
        flex: 1;
        max-width: 50%;
    }

    .page-index-latest-industry-news .hero-title {
        font-size: 4em;
    }

    .page-index-latest-industry-news .hero-description {
        font-size: 1.4em;
    }

    .page-index-latest-industry-news .section-title {
        font-size: 3em;
    }

    .page-index-latest-industry-news .subsection-title {
        font-size: 2em;
    }
}

@media (max-width: 767px) {
    .page-index-latest-industry-news .hero-title {
        font-size: 2.5em;
    }

    .page-index-latest-industry-news .hero-description {
        font-size: 1em;
    }

    .page-index-latest-industry-news .section-title {
        font-size: 2em;
    }

    .page-index-latest-industry-news .subsection-title {
        font-size: 1.5em;
    }

    .page-index-latest-industry-news p {
        font-size: 1em;
    }

    .page-index-latest-industry-news .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}