/* style/news-system-upgrade-notice.css */

/* Custom Colors */
:root {
    --shbrt-win-primary: #11A84E;
    --shbrt-win-secondary: #22C768;
    --shbrt-win-card-bg: #11271B;
    --shbrt-win-background: #08160F;
    --shbrt-win-text-main: #F2FFF6;
    --shbrt-win-text-secondary: #A7D9B8;
    --shbrt-win-border: #2E7A4E;
    --shbrt-win-glow: #57E38D;
    --shbrt-win-gold: #F2C14E;
    --shbrt-win-divider: #1E3A2A;
    --shbrt-win-deep-green: #0A4B2C;
    --shbrt-win-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content, ensuring contrast with dark body background */
.page-news-system-upgrade-notice {
    color: var(--shbrt-win-text-main); /* Light text for dark background */
    background-color: var(--shbrt-win-background);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px;
}

.page-news-system-upgrade-notice__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-news-system-upgrade-notice__section {
    padding: 60px 0;
}

.page-news-system-upgrade-notice__section-title {
    font-size: clamp(2em, 4vw, 2.5em);
    color: var(--shbrt-win-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-news-system-upgrade-notice__sub-title {
    font-size: clamp(1.5em, 3vw, 2em);
    color: var(--shbrt-win-text-main);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-news-system-upgrade-notice__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--shbrt-win-text-secondary);
    text-align: center;
}

/* Hero Section */
.page-news-system-upgrade-notice__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--shbrt-win-background);
    overflow: hidden;
}

.page-news-system-upgrade-notice__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.page-news-system-upgrade-notice__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-news-system-upgrade-notice__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

.page-news-system-upgrade-notice__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    color: var(--shbrt-win-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-news-system-upgrade-notice__description {
    font-size: 1.2em;
    color: var(--shbrt-win-text-secondary);
    margin-bottom: 30px;
}

.page-news-system-upgrade-notice__cta-button {
    display: inline-block;
    background: var(--shbrt-win-button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-news-system-upgrade-notice__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Why Upgrade Section */
.page-news-system-upgrade-notice__why-upgrade {
    background-color: var(--shbrt-win-deep-green);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-news-system-upgrade-notice__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-system-upgrade-notice__feature-card {
    background: var(--shbrt-win-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--shbrt-win-border);
    color: var(--shbrt-win-text-main);
}

.page-news-system-upgrade-notice__feature-card:hover {
    transform: translateY(-10px);
}

.page-news-system-upgrade-notice__feature-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-news-system-upgrade-notice__feature-title {
    font-size: 1.5em;
    color: var(--shbrt-win-gold);
    margin-bottom: 15px;
}

.page-news-system-upgrade-notice__feature-description {
    font-size: 1em;
    color: var(--shbrt-win-text-secondary);
}

/* Upgrade Details Section */
.page-news-system-upgrade-notice__upgrade-details {
    background-color: var(--shbrt-win-background);
}

.page-news-system-upgrade-notice__info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-system-upgrade-notice__info-card {
    background: var(--shbrt-win-card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--shbrt-win-border);
    color: var(--shbrt-win-text-main);
}

.page-news-system-upgrade-notice__card-title {
    font-size: 1.4em;
    color: var(--shbrt-win-gold);
    margin-bottom: 15px;
}

.page-news-system-upgrade-notice__card-text {
    font-size: 1em;
    color: var(--shbrt-win-text-secondary);
}

/* Benefits Section */
.page-news-system-upgrade-notice__benefits {
    background-color: var(--shbrt-win-deep-green);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-news-system-upgrade-notice__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news-system-upgrade-notice__benefit-item {
    background: var(--shbrt-win-card-bg);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--shbrt-win-border);
    color: var(--shbrt-win-text-main);
}

.page-news-system-upgrade-notice__benefit-icon {
    width: 60px; /* Min size 200x200 is for content images, icons can be smaller if purely decorative and not content-bearing */
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-news-system-upgrade-notice__benefit-title {
    font-size: 1.4em;
    color: var(--shbrt-win-gold);
    margin-bottom: 10px;
}

.page-news-system-upgrade-notice__benefit-description {
    font-size: 1em;
    color: var(--shbrt-win-text-secondary);
}

/* Support & FAQ Section */
.page-news-system-upgrade-notice__support-faq {
    background-color: var(--shbrt-win-background);
}

.page-news-system-upgrade-notice__contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.page-news-system-upgrade-notice__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--shbrt-win-text-secondary);
}

.page-news-system-upgrade-notice__contact-list li {
    margin-bottom: 10px;
}

.page-news-system-upgrade-notice__contact-link {
    color: var(--shbrt-win-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-system-upgrade-notice__contact-link:hover {
    color: var(--shbrt-win-gold);
    text-decoration: underline;
}

.page-news-system-upgrade-notice__faq {
    margin-top: 40px;
}

.page-news-system-upgrade-notice__faq-item {
    background: var(--shbrt-win-card-bg);
    border: 1px solid var(--shbrt-win-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news-system-upgrade-notice__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--shbrt-win-text-main);
    cursor: pointer;
    background-color: var(--shbrt-win-deep-green);
    border-bottom: 1px solid var(--shbrt-win-divider);
    transition: background-color 0.3s ease;
}

.page-news-system-upgrade-notice__faq-question:hover {
    background-color: var(--shbrt-win-primary);
}

.page-news-system-upgrade-notice__faq-question::-webkit-details-marker {
    display: none;
}

.page-news-system-upgrade-notice__faq-question::marker {
    display: none;
}

.page-news-system-upgrade-notice__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--shbrt-win-gold);
}

.page-news-system-upgrade-notice__faq-item[open] .page-news-system-upgrade-notice__faq-toggle {
    content: '−';
}

.page-news-system-upgrade-notice__faq-answer {
    padding: 20px 25px;
    font-size: 1.1em;
    color: var(--shbrt-win-text-secondary);
    background-color: var(--shbrt-win-card-bg);
}

/* Commitment Section */
.page-news-system-upgrade-notice__commitment {
    background-color: var(--shbrt-win-deep-green);
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-news-system-upgrade-notice__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-system-upgrade-notice__btn-primary {
    background: var(--shbrt-win-button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-news-system-upgrade-notice__btn-secondary {
    background: transparent;
    color: var(--shbrt-win-secondary);
    border: 2px solid var(--shbrt-win-secondary);
}

.page-news-system-upgrade-notice__btn-secondary:hover {
    background: var(--shbrt-win-secondary);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-system-upgrade-notice__hero-content {
        max-width: 768px;
    }
    .page-news-system-upgrade-notice__main-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-news-system-upgrade-notice__description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-news-system-upgrade-notice__section {
        padding: 40px 0;
    }
    .page-news-system-upgrade-notice__section-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
        margin-bottom: 30px;
    }
    .page-news-system-upgrade-notice__sub-title {
        font-size: clamp(1.4em, 5vw, 1.8em);
    }
    .page-news-system-upgrade-notice__text-block {
        font-size: 1em;
    }

    .page-news-system-upgrade-notice__hero-section {
        padding-bottom: 40px;
    }
    .page-news-system-upgrade-notice__hero-image-wrapper {
        max-height: 300px;
    }
    .page-news-system-upgrade-notice__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-news-system-upgrade-notice__description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-news-system-upgrade-notice__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-news-system-upgrade-notice__features-grid,
    .page-news-system-upgrade-notice__info-cards,
    .page-news-system-upgrade-notice__benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-news-system-upgrade-notice__feature-card,
    .page-news-system-upgrade-notice__info-card,
    .page-news-system-upgrade-notice__benefit-item {
        padding: 20px;
    }

    .page-news-system-upgrade-notice__feature-image {
        max-height: 150px;
    }

    .page-news-system-upgrade-notice__feature-title,
    .page-news-system-upgrade-notice__card-title,
    .page-news-system-upgrade-notice__benefit-title {
        font-size: 1.3em;
    }

    .page-news-system-upgrade-notice__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-news-system-upgrade-notice__faq-answer {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-news-system-upgrade-notice__contact-list {
        font-size: 1em;
    }
    
    /* Image, Video, Button Responsiveness */
    .page-news-system-upgrade-notice img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-news-system-upgrade-notice video,
    .page-news-system-upgrade-notice__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-news-system-upgrade-notice__section,
    .page-news-system-upgrade-notice__card,
    .page-news-system-upgrade-notice__container,
    .page-news-system-upgrade-notice__video-section,
    .page-news-system-upgrade-notice__video-container,
    .page-news-system-upgrade-notice__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-news-system-upgrade-notice__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-news-system-upgrade-notice__cta-button,
    .page-news-system-upgrade-notice__btn-primary,
    .page-news-system-upgrade-notice__btn-secondary,
    .page-news-system-upgrade-notice a[class*="button"],
    .page-news-system-upgrade-notice a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-news-system-upgrade-notice__cta-buttons,
    .page-news-system-upgrade-notice__button-group,
    .page-news-system-upgrade-notice__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-news-system-upgrade-notice__hero-section {
        padding-top: 10px; /* Small top padding for mobile */
        padding-bottom: 30px;
    }
    .page-news-system-upgrade-notice__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-news-system-upgrade-notice__description {
        font-size: 0.9em;
    }
    .page-news-system-upgrade-notice__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-news-system-upgrade-notice__section-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-news-system-upgrade-notice__feature-title,
    .page-news-system-upgrade-notice__card-title,
    .page-news-system-upgrade-notice__benefit-title {
        font-size: 1.2em;
    }
    .page-news-system-upgrade-notice__faq-question {
        font-size: 1em;
    }
    .page-news-system-upgrade-notice__faq-answer {
        font-size: 0.95em;
    }
}