.page-news {
    max-width: 1390px;
    margin: 0 auto;
    padding: 10px 15px;
    background-color: #FFFFFF;
    color: #333333;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-news__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
}

.page-news__hero-content {
    max-width: 900px;
}

.page-news__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-news__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.page-news__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}

.page-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #26A9E0;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

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

.page-news__article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-news__article-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-news__article-content {
    padding: 25px;
}

.page-news__article-title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.page-news__article-title a {
    color: #26A9E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #1a7bb2; /* Slightly darker blue on hover */
}

.page-news__article-meta {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 15px;
}

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

.page-news__read-more-btn {
    display: inline-block;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-news__read-more-btn:hover {
    background-color: #1a7bb2;
}

.page-news__view-all {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 60px;
}

.page-news__view-all-btn {
    display: inline-block;
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-news__view-all-btn:hover {
    background-color: #1a7bb2;
    transform: translateY(-3px);
}

.page-news__cta-section {
    background-color: #F8F8F8;
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.page-news__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 20px;
}

.page-news__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 150px;
}

.page-news__btn--register {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-news__btn--register:hover {
    background-color: #1a7bb2;
    transform: translateY(-3px);
}

.page-news__btn--login {
    background-color: #EA7C07;
    color: #FFFFFF;
}

.page-news__btn--login:hover {
    background-color: #d26a06;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 850px) {
    .page-news__hero-section {
        margin-bottom: 30px;
    }

    .page-news__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .page-news__description {
        font-size: 1rem;
    }

    .page-news__section-title {
        margin-bottom: 30px;
    }

    .page-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

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

    .page-news__article-title {
        font-size: 1.2rem;
    }

    .page-news__article-excerpt {
        font-size: 0.95rem;
    }

    .page-news__cta-section {
        padding: 40px 15px;
    }

    .page-news__cta-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-news__cta-description {
        font-size: 1rem;
    }

    .page-news__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-news__btn {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .page-news {
        padding: 10px;
    }
    .page-news img {
        max-width: 100%;
        height: auto;
    }
    .page-news__hero-image, .page-news__article-image {
        min-width: 200px;
        min-height: 112px; /* For 16:9 aspect ratio */
    }
    .page-news__article-card {
        min-width: 200px;
    }
}

@media (max-width: 549px) {
    .page-news__main-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

    .page-news__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }

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

/* Ensure all images in content area are at least 200px wide */
.page-news__articles-section img, .page-news__hero-section img {
    min-width: 200px;
    min-height: 200px; /* Adjust height based on aspect ratio if needed, but ensure min-height */
}

/* Specific override for image aspect ratio to meet 200x200 min dimension requirement */
.page-news__hero-image {
    min-height: 200px; /* 1200x675 will naturally be >200x200 */
}
.page-news__article-image {
    min-height: 200px; /* 800x450 will naturally be >200x200 */
}