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

/* General Article Layout */
.page-blog-article-9 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for body text on light background, contrast 12.3:1 with #f9f9f9 */
    background-color: #f9f9f9; /* Light background */
}

.page-blog-article-9__container {
    max-width: 800px; /* Content width for blog */
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-blog-article-9__hero {
    background-color: #CC0000; /* Main brand color */
    color: #FFFFFF; /* White text for contrast, contrast 10.9:1 with #CC0000 */
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-blog-article-9__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.9), rgba(255, 215, 0, 0.2)); /* Gradient overlay */
    z-index: 1;
}

.page-blog-article-9__hero .page-blog-article-9__container {
    position: relative;
    z-index: 2;
}

.page-blog-article-9__title {
    font-size: 2.5em; /* H1 size */
    margin-bottom: 10px;
    color: #FFD700; /* Gold for main title, contrast 5.1:1 with #CC0000 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-article-9__meta {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8); /* Light white for contrast on #CC0000, contrast 8.7:1 */
    margin-bottom: 30px;
}

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

/* Article Content */
.page-blog-article-9__article-content {
    padding-top: 40px;
    padding-bottom: 60px;
}

.page-blog-article-9__article-content p {
    margin-bottom: 1.5em; /* Paragraph spacing */
    font-size: 1.1em; /* Body text size */
}

.page-blog-article-9__article-content strong {
    color: #CC0000; /* Emphasize keywords, contrast 4.7:1 with #f9f9f9 */
}

.page-blog-article-9__subtitle {
    font-size: 2em; /* H2 size */
    color: #CC0000; /* Contrast 4.7:1 with #f9f9f9 */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-blog-article-9__heading3 {
    font-size: 1.5em; /* H3 size */
    color: #CC0000; /* Contrast 4.7:1 with #f9f9f9 */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-article-9__heading4 {
    font-size: 1.25em; /* H4 size */
    color: #CC0000; /* Contrast 4.7:1 with #f9f9f9 */
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-blog-article-9__article-content ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

.page-blog-article-9__article-content ul li {
    margin-bottom: 0.8em;
}

.page-blog-article-9__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto; /* Centered with vertical spacing */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Buttons */
.page-blog-article-9__call-to-action {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background-color: #FFF8E1; /* Light gold background, contrast with #444444 text is 9.7:1 */
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-blog-article-9__call-to-action p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #444444; /* Darker text for contrast on light gold */
    line-height: 1.5;
}

.page-blog-article-9__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    margin: 0 10px 15px 10px; /* Spacing for multiple buttons */
}

.page-blog-article-9__button--primary {
    background-color: #CC0000; /* Main brand color */
    color: #FFFFFF; /* White text on #CC0000, contrast 10.9:1 */
    border: 2px solid #CC0000;
}

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

.page-blog-article-9__button--secondary {
    background-color: #FFD700; /* Auxiliary brand color */
    color: #CC0000; /* Dark red text on gold, contrast 5.1:1 */
    border: 2px solid #FFD700;
}

.page-blog-article-9__button--secondary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-blog-article-9__link--inline {
    color: #CC0000; /* Contrast 4.7:1 with #f9f9f9 */
    text-decoration: underline;
    font-weight: bold;
}

.page-blog-article-9__link--inline:hover {
    color: #990000; /* Darker red for hover on light background, contrast 7.8:1 with #f9f9f9 */
}

.page-blog-article-9__call-to-action--final {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #F0F0F0; /* Light gray background, contrast with #333333 is 10.7:1 */
    border-left: none;
    padding: 20px;
}

.page-blog-article-9__call-to-action--final .page-blog-article-9__button {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-article-9__title {
        font-size: 2em;
    }
    .page-blog-article-9__subtitle {
        font-size: 1.7em;
    }
    .page-blog-article-9__heading3 {
        font-size: 1.3em;
    }
    .page-blog-article-9__article-content p,
    .page-blog-article-9__article-content ul {
        font-size: 1em;
    }
    .page-blog-article-9__button {
        padding: 10px 20px;
        font-size: 1em;
        margin: 5px;
    }
    .page-blog-article-9__call-to-action p {
        font-size: 1.1em;
    }
    .page-blog-article-9__call-to-action--final {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-blog-article-9__title {
        font-size: 1.8em;
    }
    .page-blog-article-9__subtitle {
        font-size: 1.5em;
    }
    .page-blog-article-9__heading3 {
        font-size: 1.2em;
    }
    .page-blog-article-9__hero {
        padding: 40px 0;
    }
    .page-blog-article-9__article-content {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .page-blog-article-9__button {
        display: block; /* Stack buttons on small screens */
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}