/* style/industry-news.css */
.page-industry-news {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: page-industry-news__float 10s ease-in-out infinite alternate;
}

.page-industry-news__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    animation: page-industry-news__float 12s ease-in-out infinite alternate-reverse;
}

@keyframes page-industry-news__float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.page-industry-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

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

.page-industry-news__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

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

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

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

.page-industry-news__text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.page-industry-news__highlight {
    color: #ffc107;
    font-weight: bold;
}

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

.page-industry-news__news-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-industry-news__news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-industry-news__news-content {
    padding: 25px;
}

.page-industry-news__news-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-industry-news__news-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news__news-title a:hover {
    color: #0056b3;
}

.page-industry-news__news-excerpt {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-industry-news__btn--primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-industry-news__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-industry-news__btn--secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-industry-news__btn--secondary:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.page-industry-news__btn--center {
    display: block;
    margin: 40px auto 0;
    width: fit-content;
}

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

.page-industry-news__article-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-industry-news__list-item {
    display: flex;
    align-items: center;
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news__list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news__list-image {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
}

.page-industry-news__list-content {
    flex-grow: 1;
}

.page-industry-news__list-title {
    font-size: 1.3em;
    margin-bottom: 8px;
    font-weight: 600;
}

.page-industry-news__list-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news__list-title a:hover {
    color: #0056b3;
}

.page-industry-news__list-excerpt {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.page-industry-news__read-more {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-industry-news__read-more:hover {
    color: #b38705;
    text-decoration: underline;
}

.page-industry-news__cta-banner {
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 8px;
}

.page-industry-news__cta-content {
    max-width: 900px;
}

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

.page-industry-news__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-industry-news__cta-banner .page-industry-news__btn {
    margin: 0 15px;
}

/* Responsive adjustments */
@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-title {
        font-size: 1.5em;
    }
    .page-industry-news__cta-title {
        font-size: 2.2em;
    }
    .page-industry-news__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 80px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news__section {
        padding: 40px 0;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-industry-news__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news__news-content {
        padding: 20px;
    }
    .page-industry-news__news-title {
        font-size: 1.3em;
    }
    .page-industry-news__list-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .page-industry-news__list-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-industry-news__cta-title {
        font-size: 1.8em;
    }
    .page-industry-news__cta-text {
        font-size: 1em;
    }
    .page-industry-news__cta-banner .page-industry-news__btn {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .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.5em;
    }
    .page-industry-news__news-card {
        margin: 0 10px;
    }
    .page-industry-news__list-item {
        margin: 0 10px;
    }
    .page-industry-news__cta-title {
        font-size: 1.5em;
    }
    .page-industry-news__cta-banner .page-industry-news__btn {
        width: 90%;
    }
}