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

/* Base styles for the page content area */
.page-industry-news-latest-trends {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-industry-news-latest-trends__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-latest-trends__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="%23FFCC00"/></svg>');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 300px;
    animation: page-industry-news-latest-trends__float 10s ease-in-out infinite;
}

@keyframes page-industry-news-latest-trends__float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.page-industry-news-latest-trends__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-news-latest-trends__intro-text {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-industry-news-latest-trends__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-industry-news-latest-trends__cta-button:hover {
    background-color: #e6b800; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news-latest-trends__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* General Section Styling */
.page-industry-news-latest-trends__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-industry-news-latest-trends__section--dark {
    background-color: #003366;
    color: #e0e0e0;
}

.page-industry-news-latest-trends__section--dark .page-industry-news-latest-trends__section-title,
.page-industry-news-latest-trends__section--dark .page-industry-news-latest-trends__sub-title {
    color: #FFCC00;
}

.page-industry-news-latest-trends__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-industry-news-latest-trends__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFCC00;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.page-industry-news-latest-trends__sub-title {
    font-size: 1.8em;
    color: #003366; /* Dark blue for subtitles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news-latest-trends__section--dark .page-industry-news-latest-trends__sub-title {
    color: #FFCC00;
}

.page-industry-news-latest-trends p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-industry-news-latest-trends__section--dark p {
    color: #e0e0e0;
}

.page-industry-news-latest-trends ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-industry-news-latest-trends ul li {
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #333333;
}

.page-industry-news-latest-trends__section--dark ul li {
    color: #e0e0e0;
}

.page-industry-news-latest-trends__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-industry-news-latest-trends__content-block--reverse {
    flex-direction: row-reverse;
}

.page-industry-news-latest-trends__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-industry-news-latest-trends__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-trends__text-content {
    flex: 2;
}

.page-industry-news-latest-trends__inline-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news-latest-trends__section--dark .page-industry-news-latest-trends__inline-link {
    color: #FFCC00;
}

.page-industry-news-latest-trends__inline-link:hover {
    color: #FFCC00;
}

.page-industry-news-latest-trends__section--dark .page-industry-news-latest-trends__inline-link:hover {
    color: #e6b800;
}

/* Grid for Strategy Section */
.page-industry-news-latest-trends__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-latest-trends__grid-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-latest-trends__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-industry-news-latest-trends__grid-item .page-industry-news-latest-trends__sub-title {
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #003366;
}

.page-industry-news-latest-trends__grid-item p {
    font-size: 1em;
    color: #555;
}

.page-industry-news-latest-trends__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-industry-news-latest-trends__center-cta {
    text-align: center;
    margin-top: 50px;
}

/* Highlight keyword */
.page-industry-news-latest-trends .highlight-keyword {
    color: #CC0000; /* Accent red for keywords */
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-latest-trends__main-title {
        font-size: 2.8em;
    }
    .page-industry-news-latest-trends__section-title {
        font-size: 2em;
    }
    .page-industry-news-latest-trends__sub-title {
        font-size: 1.6em;
    }
    .page-industry-news-latest-trends__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-industry-news-latest-trends__content-block--reverse {
        flex-direction: column;
    }
    .page-industry-news-latest-trends__image-wrapper {
        order: -1; /* Image above text on small screens */
    }
    .page-industry-news-latest-trends__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-latest-trends__hero-section {
        padding: 60px 0;
    }
    .page-industry-news-latest-trends__main-title {
        font-size: 2.2em;
    }
    .page-industry-news-latest-trends__intro-text {
        font-size: 1.1em;
    }
    .page-industry-news-latest-trends__section {
        padding: 40px 0;
    }
    .page-industry-news-latest-trends__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-trends__sub-title {
        font-size: 1.4em;
    }
    .page-industry-news-latest-trends p,
    .page-industry-news-latest-trends ul li {
        font-size: 1em;
    }
    .page-industry-news-latest-trends__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-industry-news-latest-trends__main-title {
        font-size: 1.8em;
    }
    .page-industry-news-latest-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-latest-trends__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-latest-trends__sub-title {
        font-size: 1.2em;
    }
}