/* style/resources-sv88-overview.css */
.page-resources-sv88-overview {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

.page-resources-sv88-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-sv88-overview__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%);
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-resources-sv88-overview__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-resources-sv88-overview__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-resources-sv88-overview__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-resources-sv88-overview__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-sv88-overview__button {
    display: inline-block;
    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;
    white-space: nowrap;
}

.page-resources-sv88-overview__button--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-resources-sv88-overview__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-sv88-overview__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-resources-sv88-overview__button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-resources-sv88-overview__hero-image-wrapper {
    display: none; /* Hidden by default, might be shown on larger screens */
}

/* Article Section */
.page-resources-sv88-overview__article-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-resources-sv88-overview__article-content {
    max-width: 800px; /* Content width for comfortable reading */
    margin: 0 auto;
    color: #f5e6d0;
}

.page-resources-sv88-overview__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-sv88-overview__back-link:hover {
    color: #e6c200;
}

.page-resources-sv88-overview__article-subtitle {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-sv88-overview__article-sub-subtitle {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-sv88-overview__article-content p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-sv88-overview__article-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1.5em;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-sv88-overview__article-content li {
    margin-bottom: 0.5em;
}

.page-resources-sv88-overview__article-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-sv88-overview__cta-section {
    background-color: #1a3a61; /* Darker shade of main color */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-sv88-overview__cta-text {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-sv88-overview__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-sv88-overview__inline-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-sv88-overview__inline-link:hover {
    color: #e6c200;
}

.page-resources-sv88-overview__bottom-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-resources-sv88-overview__hero {
        text-align: left;
        padding: 100px 0;
        flex-direction: row;
    }

    .page-resources-sv88-overview__hero-content {
        max-width: 50%;
        margin: 0;
        padding-right: 40px;
    }

    .page-resources-sv88-overview__hero-actions {
        justify-content: flex-start;
    }

    .page-resources-sv88-overview__hero-image-wrapper {
        display: block;
        max-width: 50%;
        flex-shrink: 0;
    }

    .page-resources-sv88-overview__hero-image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-resources-sv88-overview__hero-title {
        font-size: 4em;
    }

    .page-resources-sv88-overview__article-content {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .page-resources-sv88-overview__hero-title {
        font-size: 2.5em;
    }

    .page-resources-sv88-overview__hero-description {
        font-size: 1.1em;
    }

    .page-resources-sv88-overview__hero-actions {
        flex-direction: column;
    }

    .page-resources-sv88-overview__button {
        width: 100%;
        text-align: center;
    }

    .page-resources-sv88-overview__article-subtitle {
        font-size: 1.8em;
    }

    .page-resources-sv88-overview__article-sub-subtitle {
        font-size: 1.3em;
    }

    .page-resources-sv88-overview__article-content p,
    .page-resources-sv88-overview__article-content ul {
        font-size: 1em;
    }

    .page-resources-sv88-overview__cta-text {
        font-size: 1.2em;
    }

    .page-resources-sv88-overview__button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}