/* style/industry-reports-tech-innovation.css */

/* Base styles for the page content */
.page-industry-reports-tech-innovation {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Hero Section */
.page-industry-reports-tech-innovation__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-industry-reports-tech-innovation__hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
}

.page-industry-reports-tech-innovation__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.page-industry-reports-tech-innovation__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e9ecef;
}

.page-industry-reports-tech-innovation__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-industry-reports-tech-innovation__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.1);
}

/* General Section Styling */
.page-industry-reports-tech-innovation__section {
    padding: 60px 0;
    border-bottom: 1px solid #e2e6ea;
}

.page-industry-reports-tech-innovation__section:last-of-type {
    border-bottom: none;
}

.page-industry-reports-tech-innovation__section--alt-bg {
    background-color: #e9ecef;
}

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

.page-industry-reports-tech-innovation__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-reports-tech-innovation__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
}

/* Content Blocks (Text + Image) */
.page-industry-reports-tech-innovation__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-industry-reports-tech-innovation__content-block--reverse {
    flex-direction: row-reverse;
}

.page-industry-reports-tech-innovation__content-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: auto;
}

.page-industry-reports-tech-innovation__text-content {
    flex: 2;
    min-width: 300px;
}

.page-industry-reports-tech-innovation__text-content h3 {
    font-size: 1.6em;
    color: #0056b3;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-industry-reports-tech-innovation__text-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-industry-reports-tech-innovation__text-content ul li {
    margin-bottom: 10px;
    color: #495057;
    font-size: 1.05em;
}

/* Buttons */
.page-industry-reports-tech-innovation__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.05em;
    cursor: pointer;
    border: none;
}

.page-industry-reports-tech-innovation__btn--primary {
    background-color: #ffc107;
    color: #333;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-industry-reports-tech-innovation__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-industry-reports-tech-innovation__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
    margin-left: 15px;
}

.page-industry-reports-tech-innovation__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-industry-reports-tech-innovation__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

/* Related Articles */
.page-industry-reports-tech-innovation__articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-reports-tech-innovation__article-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-reports-tech-innovation__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-industry-reports-tech-innovation__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-industry-reports-tech-innovation__article-card h3 {
    font-size: 1.3em;
    color: #007bff;
    padding: 15px 20px 10px;
    margin: 0;
}

.page-industry-reports-tech-innovation__article-card h3 a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.page-industry-reports-tech-innovation__article-card h3 a:hover {
    color: #0056b3;
}

.page-industry-reports-tech-innovation__article-card p {
    font-size: 0.95em;
    color: #555;
    padding: 0 20px 15px;
    margin: 0;
}

.page-industry-reports-tech-innovation__read-more {
    display: block;
    text-align: right;
    padding: 0 20px 20px;
    color: #ffc107;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-reports-tech-innovation__read-more:hover {
    color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-reports-tech-innovation__content-block {
        flex-direction: column;
        text-align: center;
    }

    .page-industry-reports-tech-innovation__content-block--reverse {
        flex-direction: column;
    }

    .page-industry-reports-tech-innovation__content-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .page-industry-reports-tech-innovation__hero-content {
        padding: 0 15px;
    }

    .page-industry-reports-tech-innovation__title {
        font-size: 2.2em;
    }

    .page-industry-reports-tech-innovation__subtitle {
        font-size: 1.1em;
    }

    .page-industry-reports-tech-innovation__section-title {
        font-size: 1.8em;
    }

    .page-industry-reports-tech-innovation__btn {
        margin: 10px 0 0;
    }

    .page-industry-reports-tech-innovation__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .page-industry-reports-tech-innovation__hero {
        padding: 60px 15px;
    }

    .page-industry-reports-tech-innovation__title {
        font-size: 1.8em;
    }

    .page-industry-reports-tech-innovation__subtitle {
        font-size: 1em;
    }

    .page-industry-reports-tech-innovation__section {
        padding: 40px 0;
    }

    .page-industry-reports-tech-innovation__section-title {
        font-size: 1.6em;
    }

    .page-industry-reports-tech-innovation__text-content h3 {
        font-size: 1.4em;
    }

    .page-industry-reports-tech-innovation__articles {
        grid-template-columns: 1fr;
    }

    .page-industry-reports-tech-innovation__cta-buttons .page-industry-reports-tech-innovation__btn {
        width: 100%;
        margin-bottom: 15px;
    }
}