/* style/industry-reports.css */
.page-industry-reports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C;
}

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

.page-industry-reports__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-industry-reports__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.page-industry-reports__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(100px);
}

.page-industry-reports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-reports__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e5dfd3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-reports__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    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;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-reports__cta-button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
}

.page-industry-reports__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
    position: relative;
    font-weight: bold;
}

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

.page-industry-reports__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5dfd3;
    text-align: justify;
}

.page-industry-reports__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-industry-reports__image:hover {
    transform: scale(1.01);
}

.page-industry-reports__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-industry-reports__grid-item {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-reports__grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-industry-reports__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-industry-reports__featured-reports {
    background-color: #1A202C;
    padding-bottom: 80px;
}

.page-industry-reports__reports-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-reports__report-item {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-reports__report-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-industry-reports__report-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-industry-reports__report-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-reports__report-title a:hover {
    color: #e5c100;
    text-decoration: underline;
}

.page-industry-reports__report-description {
    font-size: 1em;
    color: #e5dfd3;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-industry-reports__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.page-industry-reports__button:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-industry-reports__cta-bottom {
    background-color: #2a3342;
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-industry-reports__cta-bottom .page-industry-reports__section-title {
    padding-top: 0;
    margin-bottom: 30px;
}

.page-industry-reports__cta-bottom .page-industry-reports__text-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-industry-reports__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-reports__hero-title {
        font-size: 2.8em;
    }
    .page-industry-reports__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-reports__section-title {
        font-size: 2em;
    }
    .page-industry-reports__grid {
        grid-template-columns: 1fr;
    }
    .page-industry-reports__reports-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-industry-reports__hero {
        padding: 80px 0;
    }
    .page-industry-reports__hero-title {
        font-size: 2.2em;
    }
    .page-industry-reports__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-reports__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
        padding-top: 60px;
    }
    .page-industry-reports__text-content {
        font-size: 0.95em;
    }
    .page-industry-reports__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-reports__sub-title {
        font-size: 1.5em;
    }
    .page-industry-reports__report-title {
        font-size: 1.4em;
    }
    .page-industry-reports__button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-industry-reports__cta-bottom {
        padding: 60px 0;
    }
    .page-industry-reports__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-reports__hero {
        padding: 60px 0;
    }
    .page-industry-reports__hero-title {
        font-size: 1.8em;
    }
    .page-industry-reports__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-reports__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-industry-reports__container {
        padding: 0 15px;
    }
    .page-industry-reports__grid-item, .page-industry-reports__report-item {
        padding: 20px;
    }
    .page-industry-reports__sub-title {
        font-size: 1.3em;
    }
    .page-industry-reports__report-title {
        font-size: 1.2em;
    }
    .page-industry-reports__cta-button--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}