/* style/blog-article-7.css */

/* Base styles for the blog article */
.page-blog-article-7 {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text on dark background for general readability */
    background-color: #0A244A; /* Primary dark background */
    line-height: 1.6;
}

.page-blog-article-7__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-blog-article-7__hero {
    background: linear-gradient(135deg, #0A244A, #1A3C6B); /* Darker blue gradient */
    padding: 60px 0 40px;
    text-align: center;
    color: #FFD700; /* Gold for main title */
    border-bottom: 2px solid #FFD700;
}

.page-blog-article-7__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for primary title */
    line-height: 1.2;
}

.page-blog-article-7__meta {
    font-size: 0.9em;
    color: #A0A0A0;
    margin-bottom: 25px;
}

.page-blog-article-7__back-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    border: 1px solid #FFD700;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog-article-7__back-link:hover {
    background-color: #FFD700;
    color: #0A244A;
}

/* Article Content */
.page-blog-article-7__article-content {
    padding: 40px 0;
    color: #E0E0E0; /* Light text for readability */
}

.page-blog-article-7__article-content p {
    margin-bottom: 1.5em;
    font-size: 1.1em; /* 17.6px based on 16px base */
}

.page-blog-article-7__heading {
    font-size: 2em; /* ~32px */
    color: #FFD700; /* Gold for H2 */
    margin-top: 2em;
    margin-bottom: 1em;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5em;
}

.page-blog-article-7__sub-heading {
    font-size: 1.5em; /* ~24px */
    color: #FFD700;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}

.page-blog-article-7__article-content h4 {
    font-size: 1.25em; /* ~20px */
    color: #FFD700;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
}

.page-blog-article-7__image-figure {
    text-align: center;
    margin: 2em 0;
}

.page-blog-article-7__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-article-7__image-figure figcaption {
    font-size: 0.9em;
    color: #A0A0A0;
    margin-top: 10px;
}

.page-blog-article-7__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1.5em;
}

.page-blog-article-7__list-ordered {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 1.5em;
}

.page-blog-article-7__list li,
.page-blog-article-7__list-ordered li {
    margin-bottom: 0.5em;
    color: #F0F0F0;
}

.page-blog-article-7__quote {
    border-left: 4px solid #FFD700;
    background-color: #1A3C6B;
    padding: 15px 20px;
    margin: 2em 0;
    font-style: italic;
    color: #F0F0F0;
    border-radius: 5px;
}

.page-blog-article-7__quote cite {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 0.9em;
    color: #A0A0A0;
}

.page-blog-article-7__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A244A; /* Dark blue text on gold */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 1.5em;
    margin-right: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-article-7__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-blog-article-7__cta-button--highlight {
    background-color: #FFD700;
    color: #0A244A;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-blog-article-7__cta-button--highlight:hover {
    background-color: #e6c200;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.page-blog-article-7__cta-button--final {
    display: block;
    width: fit-content;
    margin: 3em auto 2em;
    text-align: center;
    font-size: 1.2em;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #0A244A;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.page-blog-article-7__cta-button--final:hover {
    background-color: #e6c200;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.9);
}

.page-blog-article-7__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 2em;
    margin-bottom: 2em;
}

.page-blog-article-7__button-group .page-blog-article-7__cta-button {
    margin-top: 0;
}

.page-blog-article-7__back-link--bottom {
    display: block;
    text-align: center;
    margin-top: 3em;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-article-7__title {
        font-size: 2.2em;
    }

    .page-blog-article-7__heading {
        font-size: 1.8em;
    }

    .page-blog-article-7__sub-heading {
        font-size: 1.3em;
    }

    .page-blog-article-7__article-content p {
        font-size: 1em;
    }

    .page-blog-article-7__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .page-blog-article-7__button-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-blog-article-7__title {
        font-size: 1.8em;
    }

    .page-blog-article-7__heading {
        font-size: 1.5em;
    }

    .page-blog-article-7__sub-heading {
        font-size: 1.1em;
    }

    .page-blog-article-7__cta-button--final {
        font-size: 1em;
        padding: 12px 20px;
    }

    .page-blog-article-7__container {
        padding: 15px;
    }
}