/* style/blog-article-7.css */
.page-blog-article-7 {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
}

.page-blog-article-7__article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-blog-article-7__title {
    font-size: 2.5em; /* H1 */
    color: #0A2342;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-article-7__meta-info {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 30px;
}

.page-blog-article-7__date,
.page-blog-article-7__author {
    margin: 0 10px;
}

.page-blog-article-7__featured-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    display: block;
}

.page-blog-article-7__section {
    margin-bottom: 40px;
}

.page-blog-article-7__section-title {
    font-size: 2em; /* H2 */
    color: #0A2342;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F0A500;
    padding-bottom: 10px;
}

.page-blog-article-7__subsection-title {
    font-size: 1.5em; /* H3 */
    color: #0A2342;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-article-7__sub-subsection-title {
    font-size: 1.25em; /* H4 */
    color: #0A2342;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-blog-article-7 p {
    font-size: 1.125em; /* 18px */
    margin-bottom: 1.5em;
    line-height: 1.7;
    color: #333;
}

.page-blog-article-7__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.page-blog-article-7__image--center {
    margin-left: auto;
    margin-right: auto;
}

.page-blog-article-7__inline-link {
    color: #F0A500;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-article-7__inline-link:hover {
    text-decoration: underline;
}

.page-blog-article-7__ordered-list,
.page-blog-article-7__unordered-list {
    margin-bottom: 1.5em;
    padding-left: 25px;
    font-size: 1.125em;
    color: #333;
}

.page-blog-article-7__ordered-list li,
.page-blog-article-7__unordered-list li {
    margin-bottom: 0.8em;
}

.page-blog-article-7__cta-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(240, 165, 0, 0.1);
    border-radius: 8px;
    border: 1px dashed #F0A500;
}

.page-blog-article-7__cta-section p {
    font-size: 1.25em;
    font-weight: bold;
    color: #0A2342;
    margin-bottom: 20px;
}

.page-blog-article-7__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 10px;
    text-align: center;
}

.page-blog-article-7__button--primary {
    background-color: #F0A500;
    color: #0A2342;
    border: 1px solid #F0A500;
}

.page-blog-article-7__button--primary:hover {
    background-color: #e69500;
    color: #fff;
}

.page-blog-article-7__button--secondary {
    background-color: transparent;
    color: #F0A500;
    border: 1px solid #F0A500;
}

.page-blog-article-7__button--secondary:hover {
    background-color: #F0A500;
    color: #0A2342;
}

.page-blog-article-7__button--text {
    background: none;
    border: none;
    color: #0A2342;
    padding: 0;
    margin: 0;
    font-size: 1.1em;
}

.page-blog-article-7__button--text:hover {
    color: #F0A500;
    text-decoration: underline;
}

.page-blog-article-7__faq {
    margin-top: 30px;
}

.page-blog-article-7__faq-item {
    background-color: #f0f4f7;
    border-left: 5px solid #0A2342;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.page-blog-article-7__faq-question {
    font-size: 1.2em;
    color: #0A2342;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-article-7__faq-answer {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

.page-blog-article-7__return-link {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-article-7__article-container {
        margin: 20px auto;
        padding: 15px;
    }

    .page-blog-article-7__title {
        font-size: 2em;
    }

    .page-blog-article-7__section-title {
        font-size: 1.7em;
    }

    .page-blog-article-7__subsection-title {
        font-size: 1.3em;
    }

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

    .page-blog-article-7__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}

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

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

    .page-blog-article-7__subsection-title {
        font-size: 1.2em;
    }

    .page-blog-article-7 p {
        font-size: 0.95em;
    }

    .page-blog-article-7__meta-info {
        font-size: 0.8em;
    }
}