
/* =========================================================
    2. NEWS EDITORIAL SECTION ARCHITECTURE
========================================================= */
.news-section-area {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

/* Header Re-engineering */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.header-title-box .news-tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c9962a; /* Your Gold Variant */
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.header-title-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0d1b3e;
    margin: 0;
    letter-spacing: -0.5px;
}
.video-title-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.news-title-line {
    width: 40px;
    height: 3px;
    background: #0d1b3e;
    margin-top: 12px;
    border-radius: 4px;
}

/* Header Action Button Blueprint */
.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0d1b3e;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-see-all i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-see-all:hover {
    background: #0d1b3e;
    color: #ffffff !important;
    border-color: #0d1b3e;
}

.btn-see-all:hover i {
    transform: translateX(4px);
}

/* Fluid News Matrix Grid structure */
.news-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 576px) {
    .news-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .news-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .news-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Modern news listing page layout */
.news-list-page {
    padding: 40px 0 70px;
}

.news-list-layout {
    align-items: flex-start;
}

.news-list-header {
    margin-bottom: 24px;
}

.news-page-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c9962a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

.news-list-header h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    color: #0d1b3e;
}

.modern-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .modern-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .modern-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .modern-news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.modern-news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    box-shadow: 0 15px 35px rgba(13, 27, 62, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    height: 100%;
}

.modern-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(13, 27, 62, 0.1);
}

.modern-news-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.modern-news-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f7f9fc;
}

.modern-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-news-card:hover .modern-news-thumb img {
    transform: scale(1.06);
}

.modern-news-date {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(13, 27, 62, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    z-index: 1;
}

.modern-news-body {
    padding: 18px 18px 22px;
}

.modern-news-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b3e;
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-news-body p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #5e6b85;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #c9962a;
}

/* Premium Card Structural Framework */
.news-card-editorial {
    background: #ffffff;
    border: 1px solid #eaf0f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 27, 62, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-editorial:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(13, 27, 62, 0.07);
    border-color: rgba(201, 150, 42, 0.15);
}

/* Image Thumb Context Structure */
.news-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card-editorial:hover .news-thumb img {
    transform: scale(1.05);
}

/* Floating Component Date Tag */
.news-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(13, 27, 62, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Typography Body Layout */
.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* News Title Bangla/English Optimized Typography */
.news-content h4.bn {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    color: #0d1b3e;
    margin: 0 0 12px 0;
    transition: color 0.25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-editorial:hover .news-content h4.bn {
    color: #c9962a;
}

/* Summary Description Structural Truncation */
.news-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Self-Anchored Interactive Card Footer */
.news-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f8fafc;
}

.read-link {
    color: #0d1b3e;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.25s ease;
}

.read-link i {
    font-size: 16px;
}

.news-card-editorial:hover .read-link {
    color: #c9962a;
    gap: 8px;
}
