.page-blog__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-blog__hero-image-wrapper {
    margin: 0;
    width: 100%;
}

.page-blog__hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9; /* For hero image, 1920x1080 is 16:9 */
}

.page-blog__hero-content {
    text-align: center;
    padding: 20px 15px 40px;
    background-color: #26A9E0; /* Using primary color for background */
    color: #FFFFFF;
}

.page-blog__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog__cta-button:hover {
    background-color: #d86c06; /* Darken #EA7C07 */
}

.page-blog__posts-section,
.page-blog__cta-section,
.page-blog__faq-section {
    padding: 40px 0;
    background-color: #FFFFFF; /* Auxiliary color for content sections */
    color: #333333;
}

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

.page-blog__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0;
}

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

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

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

.page-blog__post-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-blog__post-thumbnail {
    margin: 0;
    width: 100%;
    height: 225px; /* Fixed height for consistency, will be responsive */
    overflow: hidden;
}

.page-blog__post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none; /* Ensure no filter applied */
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
}

.page-blog__post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-blog__post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #26A9E0; /* Primary color for title */
    line-height: 1.4;
}

.page-blog__post-date {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 15px;
    display: block;
}

.page-blog__post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

.page-blog__pagination {
    text-align: center;
    margin-top: 20px;
}

.page-blog__pagination-item {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    border: 1px solid #26A9E0;
    border-radius: 5px;
    color: #26A9E0;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-blog__pagination-item:hover:not(.page-blog__pagination-item--active) {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-blog__pagination-item--active {
    background-color: #26A9E0;
    color: #FFFFFF;
    font-weight: 600;
    cursor: default;
}

.page-blog__cta-section {
    background-color: #26A9E0; /* Primary color for CTA background */
    color: #FFFFFF;
    text-align: center;
    padding: 60px 0;
}

.page-blog__cta-content {
    max-width: 800px;
}

.page-blog__cta-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-blog__cta-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-blog__cta-button--large {
    padding: 15px 35px;
    font-size: 1.1rem;
    background-color: #EA7C07; /* Login color for CTA button */
}

.page-blog__faq-list {
    margin-top: 30px;
}

.page-blog__faq-item {
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-blog__faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 849px) {
    .page-blog__posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog__hero-image-wrapper img,
    .page-blog__post-thumbnail img {
        max-width: 100%;
        height: auto;
    }
    .page-blog__main-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    .page-blog__description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    .page-blog__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    .page-blog__post-title {
        font-size: 1.1rem;
    }
    .page-blog__cta-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-blog__cta-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    .page-blog__cta-button--large {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-blog__faq-question {
        font-size: 1.05rem;
    }
    .page-blog__faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 549px) {
    .page-blog__hero-content {
        padding: 15px 10px 30px;
    }
    .page-blog__posts-grid {
        grid-template-columns: 1fr;
    }
    .page-blog__posts-section,
    .page-blog__cta-section,
    .page-blog__faq-section {
        padding: 30px 0;
    }
    .page-blog__section-title {
        margin-bottom: 30px;
    }
    .page-blog__container {
        padding: 0 10px;
    }
    .page-blog__post-content {
        padding: 15px;
    }
    .page-blog__post-title {
        font-size: 1.1rem;
    }
    .page-blog__post-date {
        font-size: 0.85rem;
    }
    .page-blog__post-excerpt {
        font-size: 0.95rem;
    }
    .page-blog__faq-item {
        padding: 15px;
    }
    .page-blog__faq-question {
        font-size: 1rem;
    }
}

/* Ensure content area images are not smaller than 200px */
/* The .page-blog__post-thumbnail img rule already has min-width/height, ensuring compliance. */
/* The hero image does not need this restriction as it's a main visual. */