/* style/resources-jun88-v2-latest-features.css */

/* Base styles for the page content */
.page-resources-jun88-v2-latest-features {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

/* Hero Section */
.page-resources-jun88-v2-latest-features__hero {
    background: linear-gradient(135deg, #FFD700, #000080);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-jun88-v2-latest-features__hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-resources-jun88-v2-latest-features__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-jun88-v2-latest-features__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-resources-jun88-v2-latest-features__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    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;
    border: none;
    cursor: pointer;
}

.page-resources-jun88-v2-latest-features__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

/* Article Container */
.page-resources-jun88-v2-latest-features__article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-jun88-v2-latest-features__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #000080; /* Dark Blue */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-jun88-v2-latest-features__back-link:hover {
    color: #FFD700; /* Gold */
}

.page-resources-jun88-v2-latest-features__back-link--bottom {
    margin-top: 40px;
    display: block;
    text-align: center;
}

/* Section Styling */
.page-resources-jun88-v2-latest-features__section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-resources-jun88-v2-latest-features__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-resources-jun88-v2-latest-features__section-title {
    font-size: 2em;
    color: #000080; /* Dark Blue */
    margin-bottom: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-resources-jun88-v2-latest-features__sub-title {
    font-size: 1.5em;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-resources-jun88-v2-latest-features__article-container p {
    margin-bottom: 15px;
    color: #555;
}

.page-resources-jun88-v2-latest-features__article-container ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-resources-jun88-v2-latest-features__article-container li {
    margin-bottom: 8px;
}

/* Images */
.page-resources-jun88-v2-latest-features__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-jun88-v2-latest-features__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons within content */
.page-resources-jun88-v2-latest-features__button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-resources-jun88-v2-latest-features__button {
    display: inline-block;
    background-color: #000080; /* Dark Blue */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-jun88-v2-latest-features__button:hover {
    background-color: #000066; /* Slightly darker blue */
    transform: translateY(-2px);
}

.page-resources-jun88-v2-latest-features__button--secondary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
}

.page-resources-jun88-v2-latest-features__button--secondary:hover {
    background-color: #e6c200; /* Slightly darker gold */
}

.page-resources-jun88-v2-latest-features__button--large {
    font-size: 1.2em;
    padding: 15px 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-jun88-v2-latest-features__hero-title {
        font-size: 2.2em;
    }

    .page-resources-jun88-v2-latest-features__hero-description {
        font-size: 1em;
    }

    .page-resources-jun88-v2-latest-features__section-title {
        font-size: 1.8em;
    }

    .page-resources-jun88-v2-latest-features__sub-title {
        font-size: 1.3em;
    }

    .page-resources-jun88-v2-latest-features__article-container {
        margin: 20px auto;
        padding: 15px;
    }

    .page-resources-jun88-v2-latest-features__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-jun88-v2-latest-features__button, .page-resources-jun88-v2-latest-features__hero-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-resources-jun88-v2-latest-features__hero-title {
        font-size: 1.8em;
    }

    .page-resources-jun88-v2-latest-features__hero-description {
        font-size: 0.9em;
    }

    .page-resources-jun88-v2-latest-features__section-title {
        font-size: 1.5em;
    }

    .page-resources-jun88-v2-latest-features__sub-title {
        font-size: 1.2em;
    }
}