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

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #1A2B4C, #FF8C00);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-industry-news__section {
    padding: 60px 0;
    background-color: #122340;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #FF8C00;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-industry-news__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-industry-news__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-industry-news__list li strong {
    color: #FF8C00;
}

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

.page-industry-news__btn--primary {
    background-color: #FF8C00;
    color: #1A2B4C;
    border: 2px solid #FF8C00;
}

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

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

.page-industry-news__btn--secondary:hover {
    background-color: #FF8C00;
    color: #1A2B4C;
    transform: translateY(-2px);
}

.page-industry-news__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: #1A2B4C;
    color: #FF8C00;
    border: 1px solid #FF8C00;
}

.page-industry-news__btn--small:hover {
    background-color: #FF8C00;
    color: #1A2B4C;
}

.page-industry-news__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-industry-news__article-card {
    background-color: #1A2B4C;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.page-industry-news__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-industry-news__article-title {
    font-size: 1.5em;
    color: #FF8C00;
    margin: 15px 15px 10px;
    min-height: 70px;
}

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

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

.page-industry-news__article-description {
    font-size: 1em;
    color: #c0c0c0;
    margin: 0 15px 20px;
    min-height: 60px;
}

/* Floating Ad */
.page-industry-news__floating-ad {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF8C00;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

.page-industry-news__floating-ad a {
    color: #1A2B4C;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.page-industry-news__floating-ad-text {
    margin-right: 10px;
    font-size: 1.1em;
}

.page-industry-news__floating-ad-icon {
    font-size: 1.4em;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-industry-news__floating-ad {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .page-industry-news__floating-ad-text {
        font-size: 0.9em;
    }

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

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

    .page-industry-news__section {
        padding: 40px 0;
    }

    .page-industry-news__floating-ad {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
    }

    .page-industry-news__floating-ad-text {
        font-size: 0.8em;
    }
    .page-industry-news__article-title {
        min-height: auto;
    }
    .page-industry-news__article-description {
        min-height: auto;
    }
}