.page-blog {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some spacing at the bottom */
}

.page-blog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog__hero-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding-top: 10px;
}

.page-blog__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-blog__hero-content {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: #FFFFFF;
}

.page-blog__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__hero-description {
    font-size: 1.1em;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.page-blog__posts-section {
    padding: 40px 0;
}

.page-blog__section-title {
    text-align: center;
    font-size: 2.2em;
    color: #1F2D3D;
    margin-bottom: 40px;
    font-weight: bold;
}

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

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

.page-blog__post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-blog__post-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-blog__post-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog__post-title:hover {
    color: #2F6BFF;
}

.page-blog__post-meta {
    font-size: 0.9em;
    color: #6FA3FF;
    margin-bottom: 15px;
}

.page-blog__post-excerpt {
    font-size: 1em;
    color: #1F2D3D;
    margin-bottom: 15px;
}

.page-blog__read-more {
    display: inline-block;
    color: #2F6BFF;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog__read-more:hover {
    color: #4A8BFF;
}

.page-blog__pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
}

.page-blog__pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #D6E2FF;
    border-radius: 6px;
    text-decoration: none;
    color: #1F2D3D;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.page-blog__pagination-link:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
    border-color: #2F6BFF;
}

.page-blog__pagination-link--active {
    background-color: #2F6BFF;
    color: #FFFFFF;
    border-color: #2F6BFF;
    font-weight: bold;
}

.page-blog__cta-section {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 8px;
}

.page-blog__cta-title {
    color: #FFFFFF;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog__cta-description {
    color: #FFFFFF;
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFFFFF;
    color: #2F6BFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog__cta-button:hover {
    background-color: #D6E2FF;
    color: #1F2D3D;
}

@media (max-width: 768px) {
    .page-blog__hero-content {
        padding: 30px 20px;
    }

    .page-blog__hero-title {
        font-size: 2em;
    }

    .page-blog__hero-description {
        font-size: 1em;
    }

    .page-blog__section-title {
        font-size: 1.8em;
    }

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

    .page-blog__post-title {
        font-size: 1.2em;
    }

    .page-blog__cta-title {
        font-size: 2em;
    }

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

    .page-blog__posts-grid img,
    .page-blog__hero-image {
        max-width: 100%;
        height: auto;
    }
}