body.news-page {
    background: #FAFAFA;
    overflow-x: hidden;
    min-height: auto;
}

.news-heading-section {
    padding-top: 180px;
    padding-bottom: 100px; 
}

.container-fluid.custom-padding {
    padding-left: clamp(24px, 2.5vw, 60px);
    padding-right: clamp(24px, 2.5vw, 60px);
}

.testimonial-title-container {
    display: flex;
    flex-direction: column;
}

.news-text-left {
    align-self: flex-start;
    text-align: left;
    position: relative;
    padding-left: 20vw;
}

.news-text-right {
    align-self: flex-end;
    text-align: right;
    padding-right: 20vw;
    margin-top: 20px;
}

.news-grid-section {
    padding-bottom: 150px; 
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-image-wrapper img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2; 
    object-fit: cover; 
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-grid-section .row {
    --bs-gutter-x: 3rem; 
    --bs-gutter-y: 5rem;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.02); 
}

.news-meta {
    margin-bottom: 6px;
}

.news-date {
    font-family: 'AeonikPro', sans-serif;
    font-size: clamp(16px, 1.4vw, 22px);;
    color: #BDBDBD;
    font-weight: 400;
}

.news-card-title {
    font-size: clamp(16px, 1.5vw, 25px);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.news-card-title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card-title a:hover {
    color: #757575;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    gap: 16px; 
    margin-top: 80px; 
}

.load-more-btn, .collapse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background-color: #E6E6E6; 
    border-radius: 40px; 
    font-family: 'AeonikPro', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.news-grid-section,
.news-grid-section .news-card-title a,
.news-grid-section .load-more-btn,
.news-grid-section .collapse-btn {
    transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

.news-grid-section.dark-mode {
    background-color: #111111;
}

.news-grid-section.dark-mode .news-card-title a {
    color: #ffffff;
}

.news-grid-section.dark-mode .news-card-title a:hover {
    color: #BDBDBD;
}

.news-grid-section.dark-mode .news-date {
    color: #9e9e9e; 
}

.news-grid-section.dark-mode .load-more-btn,
.news-grid-section.dark-mode .collapse-btn {
    background-color: #ffffff; 
    color: #111111;            
}

.news-grid-section.dark-mode .load-more-btn:hover,
.news-grid-section.dark-mode .collapse-btn:hover {
    background-color: #444444; 
    color: #ffffff;           
}

@media (hover: hover) and (pointer: fine) {
    .load-more-btn:hover, .collapse-btn:hover {
        background-color: #111111;
        color: #ffffff;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .news-heading-section {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .news-text-left {
        padding-left: 10vw;
    }

    .news-text-right {
        padding-right: 10vw;
        margin-top: 12px;
    }

    .news-grid-section {
        padding-bottom: 100px;
    }

    .news-card-title {
        font-size: clamp(15px, 1.8vw, 17px);
    }

    .load-more-wrap {
        margin-top: 60px;
    }
}

@media (max-width: 765px) {
    .news-heading-section {
        padding-top: 110px;
        padding-bottom: 48px;
    }

    .container-fluid.custom-padding {
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-text-left {
        padding-left: 0;
        font-size: clamp(36px, 12vw, 56px);
    }

    .news-text-right {
        padding-right: 0;
        margin-top: 8px;
        font-size: clamp(36px, 12vw, 56px);
    }

    .news-grid-section .row {
        row-gap: 36px !important;
    }

    .news-grid-section {
        padding-bottom: 80px;
    }

    .news-image-wrapper {
        margin-bottom: 12px;
    }

    .news-card-title {
        font-size: 15px;
    }

    .load-more-wrap {
        margin-top: 48px;
    }

    .load-more-btn, .collapse-btn {
        padding: 14px 36px;
        font-size: 12px;
        width: 100%;
        max-width: 280px;
    }
}