/* style/blog-article-8.css */
.page-blog-article-8 {
    background-color: #0A244A;
    color: #E0E0E0;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    padding: 40px 0;
}

.page-blog-article-8__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1A3A6A; /* Slightly lighter than main background for content */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-article-8__header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #FFD700;
    padding-bottom: 20px;
}

.page-blog-article-8__title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-article-8__meta {
    font-size: 0.9em;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.page-blog-article-8__back-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-article-8__back-link:hover {
    color: #FFF;
}

.page-blog-article-8__content p {
    font-size: 1.1em;
    margin-bottom: 1.8em;
    line-height: 1.7;
    color: #E0E0E0;
}

.page-blog-article-8__content strong {
    color: #FFD700;
}

.page-blog-article-8__heading {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-blog-article-8__sub-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-article-8__list {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-blog-article-8__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-blog-article-8__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-blog-article-8__main-image,
.page-blog-article-8__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-article-8__image-wrapper figcaption {
    font-size: 0.9em;
    color: #B0B0B0;
    margin-top: 10px;
}

.page-blog-article-8__blockquote {
    border-left: 4px solid #FFD700;
    background-color: #122F5A; /* Darker blue for contrast */
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    color: #E0E0E0;
    border-radius: 4px;
}

.page-blog-article-8__blockquote p {
    margin: 0;
    line-height: 1.6;
}

.page-blog-article-8__cta-link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-article-8__cta-link:hover {
    color: #FFF;
}

.page-blog-article-8__cta-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #2A4A7A;
}

.page-blog-article-8__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.page-blog-article-8__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    min-width: 180px;
    text-align: center;
}

.page-blog-article-8__button--primary {
    background-color: #FFD700;
    color: #0A244A;
    border: 2px solid #FFD700;
}

.page-blog-article-8__button--primary:hover {
    background-color: #FFEB3B;
    transform: translateY(-2px);
}

.page-blog-article-8__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-blog-article-8__button--secondary:hover {
    background-color: #FFD700;
    color: #0A244A;
    transform: translateY(-2px);
}

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

    .page-blog-article-8__heading {
        font-size: 1.7em;
    }

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

    .page-blog-article-8__content p, .page-blog-article-8__list li {
        font-size: 1em;
    }

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

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

    .page-blog-article-8__button {
        width: 100%;
        max-width: 250px;
    }
}

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

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

    .page-blog-article-8__sub-heading {
        font-size: 1.2em;
    }
}