/* style/resources-industry-development-trends.css */

/* Base styles for the page */
.page-resources-industry-development-trends {
    font-family: 'Arial', sans-serif;
    color: #d5d1bc; /* Light text for general content, good contrast on dark backgrounds */
    background-color: #2A2E43; /* Main brand color as background */
    line-height: 1.6;
}

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

.page-resources-industry-development-trends__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-industry-development-trends__section--alt {
    background-color: #3b4055; /* Slightly lighter dark background for contrast */
}

.page-resources-industry-development-trends__hero {
    background: linear-gradient(135deg, #2A2E43, #4a506b);
    padding: 100px 0;
    color: #FFD700; /* Gold for hero text */
    text-align: center;
}

.page-resources-industry-development-trends__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-resources-industry-development-trends__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #d5d1bc; /* Light text for subtitle */
}

.page-resources-industry-development-trends__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #FFD700; /* Gold for section titles */
    position: relative;
    padding-bottom: 15px;
}

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

.page-resources-industry-development-trends__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Slightly lighter than default for paragraphs */
}

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

.page-resources-industry-development-trends__grid-item {
    background-color: #3b4055; /* Dark background for grid items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-industry-development-trends__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-industry-development-trends__grid-item .page-resources-industry-development-trends__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-industry-development-trends__item-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for item titles */
    margin-bottom: 15px;
}

.page-resources-industry-development-trends__item-title + p {
    color: #d5d1bc; /* Light text for paragraph after item title */
}

.page-resources-industry-development-trends__content-with-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-resources-industry-development-trends__text-content {
    flex: 1;
    min-width: 300px;
}

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

.page-resources-industry-development-trends__image--large {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

.page-resources-industry-development-trends__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA buttons */
    color: #2A2E43; /* Dark 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;
    margin-top: 30px;
}

.page-resources-industry-development-trends__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-industry-development-trends__cta-button--secondary {
    background-color: #2A2E43; /* Dark background for secondary CTA */
    color: #FFD700; /* Gold text on dark */
    border: 2px solid #FFD700;
    margin-left: 20px; /* Spacing between buttons */
}

.page-resources-industry-development-trends__cta-button--secondary:hover {
    background-color: #3b4055; /* Slightly lighter dark on hover */
    color: #FFD700;
}

.page-resources-industry-development-trends__cta-group {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-resources-industry-development-trends__section--conclusion {
    background-color: #2A2E43;
    color: #d5d1bc;
}

.page-resources-industry-development-trends .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-industry-development-trends__hero-title {
        font-size: 2.5em;
    }
    .page-resources-industry-development-trends__section-title {
        font-size: 2em;
    }
    .page-resources-industry-development-trends__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-industry-development-trends__content-with-image {
        flex-direction: column;
    }
    .page-resources-industry-development-trends__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px; /* Adjust spacing for stacked buttons */
    }
    .page-resources-industry-development-trends__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-resources-industry-development-trends__hero-title {
        font-size: 2em;
    }
    .page-resources-industry-development-trends__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-industry-development-trends__section-title {
        font-size: 1.8em;
    }
    .page-resources-industry-development-trends__section p {
        font-size: 0.95em;
    }
    .page-resources-industry-development-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}