/* style/industry-news-tech-innovations.css */

.page-industry-news-tech-innovations {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-industry-news-tech-innovations__hero-section {
    position: relative;
    background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-industry-news-tech-innovations__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
}

.page-industry-news-tech-innovations__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

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

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

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

.page-industry-news-tech-innovations__section {
    padding: 60px 0;
}

.page-industry-news-tech-innovations__section--alt-bg {
    background-color: #e6eef5; /* Lighter shade of blue-gray */
}

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

.page-industry-news-tech-innovations__section-title {
    font-size: 2.5em;
    color: #003366; /* Main brand color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news-tech-innovations__content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-industry-news-tech-innovations__content-block:nth-of-type(even) {
    flex-direction: row-reverse; /* Alternate image and text */
}

.page-industry-news-tech-innovations__content-block p {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
    font-size: 1.1em;
    color: #444;
}

.page-industry-news-tech-innovations__image {
    flex: 0 0 40%;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-industry-news-tech-innovations__image--left {
    margin-right: 30px;
}

.page-industry-news-tech-innovations__image--right {
    margin-left: 30px;
}

.page-industry-news-tech-innovations__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color */
    color: #003366; /* Dark blue for text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

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

.page-industry-news-tech-innovations__cta-button--inline {
    margin-left: 20px;
    margin-right: 20px;
    display: block;
    text-align: center;
    max-width: 300px;
    margin: 30px auto;
}

.page-industry-news-tech-innovations__cta-button--secondary {
    background-color: #003366; /* Main brand color */
    color: #FFD700; /* Gold for text on dark blue */
    border: 2px solid #FFD700;
}

.page-industry-news-tech-innovations__cta-button--secondary:hover {
    background-color: #002244; /* Darker blue on hover */
    color: #FFD700;
    transform: translateY(-2px);
}

.page-industry-news-tech-innovations__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-industry-news-tech-innovations__cta-group .page-industry-news-tech-innovations__cta-button {
    margin: 0;
}

.page-industry-news-tech-innovations .highlight {
    color: #FFD700; /* Gold for highlights */
}

/* Animation for content blocks */
.page-industry-news-tech-innovations__content-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-tech-innovations__main-title {
        font-size: 2.8em;
    }

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

    .page-industry-news-tech-innovations__section-title {
        font-size: 2em;
    }

    .page-industry-news-tech-innovations__content-block {
        flex-direction: column;
        text-align: center;
    }

    .page-industry-news-tech-innovations__content-block:nth-of-type(even) {
        flex-direction: column; /* Reset order for small screens */
    }

    .page-industry-news-tech-innovations__content-block p {
        padding: 0 0 20px 0;
    }

    .page-industry-news-tech-innovations__image {
        max-width: 80%;
        margin: 20px auto !important; /* Center image */
        order: -1; /* Image appears first on mobile */
    }

    .page-industry-news-tech-innovations__image--left,
    .page-industry-news-tech-innovations__image--right {
        margin: 20px auto;
    }

    .page-industry-news-tech-innovations__cta-button--inline {
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .page-industry-news-tech-innovations__hero-section {
        padding: 80px 0 60px 0;
    }

    .page-industry-news-tech-innovations__main-title {
        font-size: 2.2em;
    }

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

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

    .page-industry-news-tech-innovations__section {
        padding: 40px 0;
    }

    .page-industry-news-tech-innovations__content-block {
        padding: 20px;
    }

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

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

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

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

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

    .page-industry-news-tech-innovations__image {
        max-width: 95%;
    }

    .page-industry-news-tech-innovations__content-block p {
        font-size: 1em;
    }
}