.page-blog {
    padding-top: 10px; /* Small top padding as per rules */
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

.page-blog__hero-section {
    max-width: 1390px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column; /* Enforce image on top, content below */
    align-items: center;
    padding: 0 15px;
}

.page-blog__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog__hero-content {
    text-align: center;
    max-width: 900px;
}

.page-blog__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp if needed, otherwise browser default + weight */
}

.page-blog__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

.page-blog__posts-section {
    max-width: 1390px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
}

.page-blog__section-title,
.page-blog__cta-title,
.page-blog__faq-main-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-blog__posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-blog__post-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-blog__card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-blog__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog__card-content {
    padding: 20px;
}

.page-blog__card-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-blog__card-meta {
    font-size: 0.9em;
    color: #1F2D3D; /* Text Main */
    opacity: 0.7;
}

.page-blog__view-all {
    text-align: center;
}

.page-blog__view-all-button,
.page-blog__cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
}

.page-blog__view-all-button:hover,
.page-blog__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-blog__cta-section {
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    padding: 60px 15px;
    text-align: center;
    margin-bottom: 60px;
}

.page-blog__cta-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-blog__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-blog__faq-section {
    max-width: 1390px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
}

.page-blog__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-blog__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-blog__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-blog__faq-answer {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-blog__section-title,
    .page-blog__cta-title,
    .page-blog__faq-main-title {
        font-size: 1.8em;
    }

    .page-blog__main-title {
        font-size: clamp(1.8em, 4vw, 2.5em); /* Using clamp for h1 */
    }
}

@media (max-width: 768px) {
    .page-blog__main-title {
        font-size: clamp(1.6em, 6vw, 2em); /* Further clamp for mobile */
    }

    .page-blog__description,
    .page-blog__cta-description {
        font-size: 1em;
    }

    .page-blog__posts-grid {
        grid-template-columns: 1fr;
    }

    .page-blog__card-image {
        height: 180px;
    }

    .page-blog__view-all-button,
    .page-blog__cta-button {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }

    /* Mobile image overflow prevention */
    .page-blog img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-blog__hero-content,
    .page-blog__posts-section,
    .page-blog__cta-section,
    .page-blog__faq-section {
        padding: 0 10px;
    }

    .page-blog__section-title,
    .page-blog__cta-title,
    .page-blog__faq-main-title {
        font-size: 1.5em;
    }
}