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

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

.page-blog-article-5__header {
    text-align: center;
    margin-bottom: 30px;
}

.page-blog-article-5__title {
    font-size: 2.5em;
    color: #0A2342;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog-article-5__meta {
    font-size: 0.9em;
    color: #666;
}

.page-blog-article-5__section {
    margin-bottom: 30px;
}

.page-blog-article-5__heading {
    font-size: 2em;
    color: #0A2342;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F0A500;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-blog-article-5__sub-heading {
    font-size: 1.5em;
    color: #0A2342;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-article-5 p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    line-height: 1.7;
    color: #444;
}

.page-blog-article-5 ul,
.page-blog-article-5 ol {
    margin-bottom: 1.5em;
    padding-left: 25px;
}

.page-blog-article-5 li {
    font-size: 1.1em;
    margin-bottom: 0.8em;
    color: #444;
}

.page-blog-article-5 a {
    color: #0A2342;
    text-decoration: underline;
}

.page-blog-article-5 a:hover {
    color: #F0A500;
    text-decoration: none;
}

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

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

.page-blog-article-5__figcaption {
    font-size: 0.9em;
    color: #777;
    margin-top: 10px;
}

.page-blog-article-5__cta-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-blog-article-5__button {
    display: inline-block;
    background-color: #F0A500;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-article-5__button:hover {
    background-color: #e09800;
    transform: translateY(-2px);
    color: #0A2342;
}

.page-blog-article-5__button--secondary {
    background-color: #0A2342;
    color: #F0A500;
    border: 2px solid #F0A500;
}

.page-blog-article-5__button--secondary:hover {
    background-color: #1a3a60;
    color: #F0A500;
    transform: translateY(-2px);
}

.page-blog-article-5__back-to-blog {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

.page-blog-article-5__link {
    font-size: 1.1em;
    color: #0A2342;
    text-decoration: none;
    font-weight: bold;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-article-5__container {
        margin: 20px auto;
        padding: 15px;
    }

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

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

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

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

    .page-blog-article-5__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

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

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

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

    .page-blog-article-5__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}