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

/* Global Reset for Article Content (scoped) */
.page-blog-article-2 * {
    box-sizing: border-box;
}

.page-blog-article-2 {
    font-family: 'Arial', sans-serif;
    color: #F5F5DC; /* Light beige for main text on dark background */
    background-color: #0A2239; /* Deep blue-black main background */
    line-height: 1.6;
    padding: 40px 0;
}

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

.page-blog-article-2__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #FFD700; /* Golden yellow for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog-article-2__back-link:hover {
    color: #FF4500; /* Orange-red on hover */
}

.page-blog-article-2__article {
    background-color: #1A3A54; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-article-2__title {
    font-size: 2.5em;
    color: #FFD700; /* Golden yellow for main title */
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.page-blog-article-2__meta {
    text-align: center;
    font-size: 0.9em;
    color: #A9B7C7; /* Lighter grey-blue for meta info */
    margin-bottom: 40px;
}

.page-blog-article-2__meta span {
    margin: 0 10px;
}

.page-blog-article-2__hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    object-fit: cover;
}

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

.page-blog-article-2__subtitle {
    font-size: 2em;
    color: #FFD700; /* Golden yellow for H2 */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-blog-article-2__sub-subtitle {
    font-size: 1.5em;
    color: #FFD700; /* Golden yellow for H3 */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-blog-article-2__section p {
    font-size: 1.1em; /* 18px */
    margin-bottom: 1.5em;
    color: #F5F5DC;
}

.page-blog-article-2__section ul,
.page-blog-article-2__section ol {
    margin-left: 2em;
    margin-bottom: 1.5em;
    color: #F5F5DC;
}

.page-blog-article-2__section li {
    margin-bottom: 0.8em;
    font-size: 1.1em;
}

.page-blog-article-2__image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2em auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-article-2__keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-blog-article-2__call-to-action {
    text-align: center;
    margin: 40px 0;
}

.page-blog-article-2__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;
}

.page-blog-article-2__button--primary {
    background-color: #FFD700; /* Golden yellow button */
    color: #0A2239; /* Deep blue-black text */
}

.page-blog-article-2__button--primary:hover {
    background-color: #FF4500; /* Orange-red on hover */
    color: #FFFFFF;
    transform: translateY(-2px);
}

.page-blog-article-2__button--secondary {
    background-color: #0A2239; /* Deep blue-black button */
    color: #FFD700; /* Golden yellow text */
    border: 2px solid #FFD700;
}

.page-blog-article-2__button--secondary:hover {
    background-color: #FFD700; /* Golden yellow on hover */
    color: #0A2239;
    transform: translateY(-2px);
}

.page-blog-article-2__related-articles {
    margin-top: 50px;
    border-top: 1px solid #3A5F7D;
    padding-top: 30px;
}

.page-blog-article-2__related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-article-2__related-list li {
    margin-bottom: 10px;
}

.page-blog-article-2__related-link {
    color: #FFD700; /* Golden yellow for related links */
    text-decoration: none;
    font-size: 1.05em;
}

.page-blog-article-2__related-link:hover {
    color: #FF4500;
    text-decoration: underline;
}

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

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

    .page-blog-article-2__subtitle {
        font-size: 1.8em;
    }

    .page-blog-article-2__sub-subtitle {
        font-size: 1.3em;
    }

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

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

@media (max-width: 480px) {
    .page-blog-article-2 {
        padding: 20px 0;
    }

    .page-blog-article-2__article {
        padding: 15px;
    }

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

    .page-blog-article-2__subtitle {
        font-size: 1.5em;
    }

    .page-blog-article-2__meta {
        font-size: 0.8em;
        margin-bottom: 20px;
    }

    .page-blog-article-2__button {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}