/* style/industry-news.css */

/* Core Styles for Industry News Page */
.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A1A2E; /* Dark blue/black auxiliary color */
    line-height: 1.6;
}

/* Hero Section */
.page-industry-news__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #33334A 50%, #1A1A2E 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-industry-news__hero-content {
    max-width: 900px;
    z-index: 1;
    margin-bottom: 30px;
}

.page-industry-news__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold primary color */
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.page-industry-news__hero-subtitle {
    font-size: 1.3em;
    color: #CCCCCC;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold primary color */
    color: #1A1A2E; /* Dark blue/black for text on gold */
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-industry-news__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.page-industry-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* General Section Styling */
.page-industry-news__section {
    padding: 60px 20px;
    background-color: #1A1A2E;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news__section:nth-of-type(even) {
    background-color: #262638;
}

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

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold primary color */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-industry-news__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Content Grid for Articles */
.page-industry-news__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-industry-news__article {
    background-color: #222238;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-news__article:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-industry-news__article-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold primary color */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

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

.page-industry-news__article p strong {
    color: #FFD700;
}

.page-industry-news__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Call to Action Buttons within articles */
.page-industry-news__cta-wrapper {
    margin-top: 25px;
    text-align: center;
}

.page-industry-news__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news__button--primary {
    background-color: #FFD700; /* Gold primary color */
    color: #1A1A2E; /* Dark blue/black for text on gold */
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

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

.page-industry-news__button--secondary {
    background-color: #4A4A6A; /* Darker shade of blue for secondary actions */
    color: #FFD700; /* Gold text for contrast */
    border: 1px solid #FFD700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news__button--secondary:hover {
    background-color: #5f5f7f;
    transform: translateY(-2px);
}

/* Conclusion Section */
.page-industry-news__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-industry-news__conclusion .page-industry-news__section-title {
    margin-bottom: 20px;
}

.page-industry-news__conclusion .page-industry-news__section-description {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news__section-title {
        font-size: 2em;
    }
    .page-industry-news__article-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 60px 15px;
    }
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news__section {
        padding: 40px 15px;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-news__section-description {
        font-size: 1em;
    }
    .page-industry-news__content-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news__article {
        padding: 25px;
    }
    .page-industry-news__article-title {
        font-size: 1.3em;
    }
    .page-industry-news__hero-cta, .page-industry-news__button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-industry-news__article-title {
        font-size: 1.2em;
    }
    .page-industry-news__article p {
        font-size: 0.9em;
    }
    .page-industry-news__hero-cta, .page-industry-news__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}