/* style/latest-news-industry-updates.css */

/* Custom properties for colors */
:root {
    --page-latest-news-industry-updates-primary-bg: #1A1A1A;
    --page-latest-news-industry-updates-secondary-bg: #2A2A2A;
    --page-latest-news-industry-updates-accent-color: #FFD700;
    --page-latest-news-industry-updates-text-light: #E0E0E0;
    --page-latest-news-industry-updates-text-dark: #1A1A1A;
    --page-latest-news-industry-updates-link-hover: #E6C200; /* Slightly darker gold */
}

.page-latest-news-industry-updates {
    background-color: var(--page-latest-news-industry-updates-primary-bg);
    color: var(--page-latest-news-industry-updates-text-light);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-latest-news-industry-updates__hero {
    background: linear-gradient(135deg, var(--page-latest-news-industry-updates-primary-bg) 0%, #333333 50%, var(--page-latest-news-industry-updates-primary-bg) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-latest-news-industry-updates__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-latest-news-industry-updates-pulse 10s infinite alternate;
    z-index: 0;
}

@keyframes page-latest-news-industry-updates-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-latest-news-industry-updates__hero .page-latest-news-industry-updates__container {
    position: relative;
    z-index: 1;
}

.page-latest-news-industry-updates__title {
    font-size: 3.5em;
    color: var(--page-latest-news-industry-updates-accent-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-latest-news-industry-updates__subtitle {
    font-size: 1.3em;
    color: var(--page-latest-news-industry-updates-text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-latest-news-industry-updates__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-latest-news-industry-updates__btn--primary {
    background-color: var(--page-latest-news-industry-updates-accent-color);
    color: var(--page-latest-news-industry-updates-text-dark);
    border: 2px solid var(--page-latest-news-industry-updates-accent-color);
}

.page-latest-news-industry-updates__btn--primary:hover {
    background-color: var(--page-latest-news-industry-updates-link-hover);
    transform: translateY(-3px);
}

.page-latest-news-industry-updates__btn--secondary {
    background-color: transparent;
    color: var(--page-latest-news-industry-updates-accent-color);
    border: 2px solid var(--page-latest-news-industry-updates-accent-color);
}

.page-latest-news-industry-updates__btn--secondary:hover {
    background-color: var(--page-latest-news-industry-updates-accent-color);
    color: var(--page-latest-news-industry-updates-text-dark);
    transform: translateY(-3px);
}

.page-latest-news-industry-updates__btn--download {
    background-color: #3E82F7; /* A blue for download */
    color: #FFFFFF;
    border: 2px solid #3E82F7;
}

.page-latest-news-industry-updates__btn--download:hover {
    background-color: #2F6AD9;
    transform: translateY(-3px);
}


.page-latest-news-industry-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-latest-news-industry-updates__section:last-of-type {
    border-bottom: none;
}

.page-latest-news-industry-updates__section-title {
    font-size: 2.5em;
    color: var(--page-latest-news-industry-updates-accent-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-latest-news-industry-updates__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-latest-news-industry-updates-accent-color);
    border-radius: 2px;
}

.page-latest-news-industry-updates__sub-section-title {
    font-size: 1.8em;
    color: var(--page-latest-news-industry-updates-text-light);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-latest-news-industry-updates-accent-color);
    padding-left: 15px;
}

.page-latest-news-industry-updates__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-latest-news-industry-updates__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-latest-news-industry-updates__text-content {
    flex: 1;
}

.page-latest-news-industry-updates__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-latest-news-industry-updates__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-latest-news-industry-updates__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-latest-news-industry-updates__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--page-latest-news-industry-updates-text-light);
}

.page-latest-news-industry-updates__list li::before {
    content: '⭐'; /* Unicode star or similar icon */
    position: absolute;
    left: 0;
    color: var(--page-latest-news-industry-updates-accent-color);
    font-size: 1.2em;
    line-height: 1.6;
}

.page-latest-news-industry-updates__cta-banner {
    background-color: var(--page-latest-news-industry-updates-secondary-bg);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid var(--page-latest-news-industry-updates-accent-color);
}

.page-latest-news-industry-updates__cta-title {
    font-size: 2.8em;
    color: var(--page-latest-news-industry-updates-accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-latest-news-industry-updates__cta-text {
    font-size: 1.2em;
    color: var(--page-latest-news-industry-updates-text-light);
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Scroll to top button */
.page-latest-news-industry-updates__scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--page-latest-news-industry-updates-accent-color);
    color: var(--page-latest-news-industry-updates-text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.page-latest-news-industry-updates__scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-latest-news-industry-updates__scroll-to-top:hover {
    background-color: var(--page-latest-news-industry-updates-link-hover);
    transform: translateY(-5px);
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news-industry-updates__title {
        font-size: 2.8em;
    }
    .page-latest-news-industry-updates__section-title {
        font-size: 2em;
    }
    .page-latest-news-industry-updates__sub-section-title {
        font-size: 1.6em;
    }
    .page-latest-news-industry-updates__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .page-latest-news-industry-updates__content-wrapper--reverse {
        flex-direction: column; /* Revert to column for smaller screens */
    }
}

@media (max-width: 768px) {
    .page-latest-news-industry-updates__hero {
        padding: 80px 0;
    }
    .page-latest-news-industry-updates__title {
        font-size: 2.2em;
    }
    .page-latest-news-industry-updates__subtitle {
        font-size: 1.1em;
    }
    .page-latest-news-industry-updates__section {
        padding: 40px 0;
    }
    .page-latest-news-industry-updates__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-latest-news-industry-updates__sub-section-title {
        font-size: 1.4em;
    }
    .page-latest-news-industry-updates__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-latest-news-industry-updates__cta-title {
        font-size: 2em;
    }
    .page-latest-news-industry-updates__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-latest-news-industry-updates__title {
        font-size: 1.8em;
    }
    .page-latest-news-industry-updates__subtitle {
        font-size: 1em;
    }
    .page-latest-news-industry-updates__section-title {
        font-size: 1.5em;
    }
    .page-latest-news-industry-updates__sub-section-title {
        font-size: 1.2em;
    }
    .page-latest-news-industry-updates__btn {
        display: block;
        margin: 10px auto;
        width: calc(100% - 20px);
    }
    .page-latest-news-industry-updates__scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
}