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

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

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

.page-blog-article-1__hero {
    background: linear-gradient(135deg, #003366, #1a4a7e);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-blog-article-1__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
    animation: page-blog-article-1__pulse 15s infinite alternate;
    pointer-events: none;
}

@keyframes page-blog-article-1__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-blog-article-1__title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-article-1__meta {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.page-blog-article-1__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-blog-article-1__article-content {
    background-color: #ffffff;
    padding: 40px 30px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-article-1__article-content p {
    margin-bottom: 1.5em;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.page-blog-article-1__article-content strong {
    color: #003366;
}

.page-blog-article-1__heading {
    font-size: 2em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

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

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

.page-blog-article-1__article-content ul,
.page-blog-article-1__article-content ol {
    margin-bottom: 1.5em;
    padding-left: 25px;
    list-style-type: disc;
}

.page-blog-article-1__article-content ol {
    list-style-type: decimal;
}

.page-blog-article-1__article-content li {
    margin-bottom: 0.8em;
    color: #444;
}

.page-blog-article-1__article-content a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-article-1__article-content a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-blog-article-1__button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #003366; /* Deep Sea Blue */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

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

.page-blog-article-1__button--primary {
    background-color: #DC143C; /* Crimson */
    color: #fff;
}

.page-blog-article-1__button--primary:hover {
    background-color: #c01132;
}

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

.page-blog-article-1__related-articles ul {
    list-style: none;
    padding: 0;
}

.page-blog-article-1__related-articles li {
    margin-bottom: 10px;
}

.page-blog-article-1__related-articles a {
    font-size: 1.1em;
    color: #003366;
}

.page-blog-article-1__related-articles a:hover {
    color: #FFD700;
    text-decoration: underline;
}

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

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

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

    .page-blog-article-1__article-content {
        padding: 25px 20px;
    }
}

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

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

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

    .page-blog-article-1__article-content p,
    .page-blog-article-1__article-content li {
        font-size: 15px;
    }

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