/* style/industry-news.css */
.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-industry-news__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #FFFFFF;
    flex-wrap: wrap;
}

.page-industry-news__hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.page-industry-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-industry-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-industry-news__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-news__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-industry-news__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-industry-news__intro-section,
.page-industry-news__main-content,
.page-industry-news__related-articles,
.page-industry-news__cta-section {
    padding: 60px 0;
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-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-industry-news__intro-section p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #E0E0E0;
}

.page-industry-news__main-content .page-industry-news__container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.page-industry-news__article {
    flex: 3;
    min-width: 60%;
    background-color: #2A313F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__article-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.page-industry-news__sub-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-industry-news__article p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-industry-news__article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-industry-news__sidebar {
    flex: 1;
    min-width: 280px;
    background-color: #2A313F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-industry-news__sidebar-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-industry-news__sidebar p {
    margin-bottom: 25px;
    color: #E0E0E0;
}

.page-industry-news__sidebar-button {
    display: block;
    width: 100%;
    background-color: #FFD700;
    color: #1A202C;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news__sidebar-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-industry-news__sidebar-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-industry-news__related-articles {
    background-color: #1A202C;
    padding: 80px 0;
}

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

.page-industry-news__related-item {
    background-color: #2A313F;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-news__item-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.page-industry-news__item-title a:hover {
    color: #FFFFFF;
}

.page-industry-news__item-description {
    color: #E0E0E0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-industry-news__item-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news__item-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-industry-news__cta-section {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #1A202C;
}

.page-industry-news__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A202C;
}

.page-industry-news__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-industry-news__cta-button {
    display: inline-block;
    background-color: #1A202C;
    color: #FFD700;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    border: 2px solid #1A202C;
}

.page-industry-news__cta-button:hover {
    background-color: #0d1016;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-industry-news__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #1A202C;
    color: #1A202C;
}

.page-industry-news__cta-button--secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news__hero-section {
        flex-direction: column;
        text-align: center;
    }

    .page-industry-news__hero-content {
        padding-right: 0;
    }

    .page-industry-news__hero-title {
        font-size: 2.5em;
    }

    .page-industry-news__main-content .page-industry-news__container {
        flex-direction: column;
    }

    .page-industry-news__article,
    .page-industry-news__sidebar {
        min-width: unset;
        width: 100%;
    }

    .page-industry-news__sidebar {
        order: -1; /* Sidebar above content on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero-section,
    .page-industry-news__intro-section,
    .page-industry-news__main-content,
    .page-industry-news__related-articles,
    .page-industry-news__cta-section {
        padding: 40px 0;
    }

    .page-industry-news__hero-title {
        font-size: 2em;
    }

    .page-industry-news__hero-description {
        font-size: 1em;
    }

    .page-industry-news__section-title {
        font-size: 2em;
    }

    .page-industry-news__article-title {
        font-size: 1.8em;
    }

    .page-industry-news__sub-title {
        font-size: 1.4em;
    }

    .page-industry-news__cta-title {
        font-size: 2.2em;
    }

    .page-industry-news__cta-button {
        padding: 15px 25px;
        font-size: 1.05em;
    }
}

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

    .page-industry-news__section-title {
        font-size: 1.8em;
    }

    .page-industry-news__article-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-industry-news__cta-button {
        width: 80%;
    }
}