/* style/news-industry-trends.css */

.page-news-industry-trends {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

.page-news-industry-trends__hero-section {
    background: linear-gradient(135deg, #0A6847 0%, #30805e 100%); /* Adjusted for better contrast with gold */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-industry-trends__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,green,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-news-industry-trends__hero-section > div {
    position: relative;
    z-index: 2;
}

.page-news-industry-trends__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-news-industry-trends__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A6847; /* Deep Green */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-news-industry-trends__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-news-industry-trends__btn--secondary {
    background-color: #0A6847; /* Deep Green */
    color: #FFFFFF;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-news-industry-trends__btn--secondary:hover {
    background-color: #074a33;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(10, 104, 71, 0.4);
}

.page-news-industry-trends__btn--tertiary {
    background-color: #54957e; /* Lighter green variant */
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    margin-left: 15px;
}

.page-news-industry-trends__btn--tertiary:hover {
    background-color: #407b67;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(84, 149, 126, 0.4);
}

.page-news-industry-trends__content-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-news-industry-trends__article {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-news-industry-trends__article-title {
    font-size: 2.2em;
    color: #0A6847; /* Deep Green */
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FFD700;
    font-weight: bold;
}

.page-news-industry-trends__sub-title {
    font-size: 1.8em;
    color: #333333;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-industry-trends__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-news-industry-trends__article ul,
.page-news-industry-trends__article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-news-industry-trends__article li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #444444;
}

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

.page-news-industry-trends__cta-group {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #e0e0e0;
}

.page-news-industry-trends__cta-group .page-news-industry-trends__btn {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-industry-trends__hero-title {
        font-size: 2.5em;
    }
    .page-news-industry-trends__hero-subtitle {
        font-size: 1.1em;
    }
    .page-news-industry-trends__article-title {
        font-size: 1.8em;
    }
    .page-news-industry-trends__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-news-industry-trends__hero-title {
        font-size: 2em;
    }
    .page-news-industry-trends__hero-subtitle {
        font-size: 1em;
    }
    .page-news-industry-trends__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-news-industry-trends__cta-group .page-news-industry-trends__btn {
        display: block;
        margin: 10px auto;
    }
    .page-news-industry-trends__article {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-news-industry-trends__hero-title {
        font-size: 1.8em;
    }
    .page-news-industry-trends__hero-subtitle {
        font-size: 0.9em;
    }
    .page-news-industry-trends__article-title {
        font-size: 1.5em;
    }
    .page-news-industry-trends__sub-title {
        font-size: 1.3em;
    }
    .page-news-industry-trends__btn {
        width: 90%;
    }
}