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

.page-industry-news-tech-trends__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* JJ88 Blue gradient */
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-industry-news-tech-trends__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-industry-news-tech-trends__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700; /* Glory Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-tech-trends__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-industry-news-tech-trends__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-industry-news-tech-trends__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-industry-news-tech-trends__section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
}

.page-industry-news-tech-trends__section:hover {
    transform: translateY(-5px);
}

.page-industry-news-tech-trends__section--alt {
    background-color: #e6f0f5; /* Lighter blue-grey for contrast */
}

.page-industry-news-tech-trends__section-title {
    font-size: 2.2em;
    color: #003366;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-industry-news-tech-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-industry-news-tech-trends__text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

.page-industry-news-tech-trends__text strong {
    color: #003366;
}

.page-industry-news-tech-trends__image-large {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-tech-trends__image-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.page-industry-news-tech-trends__image-small {
    flex: 1;
    min-width: 280px;
    max-width: 48%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-tech-trends__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Glory Gold */
    color: #003366; /* JJ88 Blue */
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.page-industry-news-tech-trends__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-news-tech-trends__cta-button--primary {
    background-color: #FFD700;
    color: #003366;
}

.page-industry-news-tech-trends__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-industry-news-tech-trends__cta-button--secondary {
    background-color: #003366;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-news-tech-trends__cta-button--secondary:hover {
    background-color: #004488;
    border-color: #e6c200;
}

.page-industry-news-tech-trends__cta-final {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #003366;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-industry-news-tech-trends__cta-heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-industry-news-tech-trends__cta-text {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-tech-trends__hero {
        padding: 60px 15px;
    }

    .page-industry-news-tech-trends__title {
        font-size: 2.5em;
    }

    .page-industry-news-tech-trends__subtitle {
        font-size: 1.1em;
    }

    .page-industry-news-tech-trends__section {
        margin: 20px auto;
        padding: 20px;
    }

    .page-industry-news-tech-trends__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-tech-trends__text {
        font-size: 1em;
    }

    .page-industry-news-tech-trends__image-row {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news-tech-trends__image-small {
        max-width: 100%;
        width: 100%;
    }

    .page-industry-news-tech-trends__cta-final {
        padding: 30px 20px;
    }

    .page-industry-news-tech-trends__cta-heading {
        font-size: 2em;
    }

    .page-industry-news-tech-trends__cta-text {
        font-size: 1em;
    }

    .page-industry-news-tech-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

    .page-industry-news-tech-trends__subtitle {
        font-size: 0.9em;
    }

    .page-industry-news-tech-trends__section-title {
        font-size: 1.5em;
    }

    .page-industry-news-tech-trends__cta-heading {
        font-size: 1.8em;
    }

    .page-industry-news-tech-trends__image-small {
        height: 200px;
    }
}