/* News Teaser Section */
.news-teaser-section {
    background: #f8f9fa;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.news-teaser-section::before {
    content: 'NEWS';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(1, 14, 42, 0.04);
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
}

.news-teaser-content {
    position: relative;
    z-index: 1;
}

/* ---- Header ---- */
.news-teaser-header {
    margin-bottom: 3rem;
}

.news-teaser-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, var(--primary-color), #ff7b3d);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.news-teaser-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.news-teaser-divider {
    width: 60px;
    height: 4px;
    background: var(--orange-gradient);
    margin: 0.75rem auto 1rem;
    border-radius: 999px;
}

.news-teaser-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.8;
}

/* ---- News Cards ---- */
.news-highlight-grid {
    margin-top: 0.5rem;
}

.news-highlight-card {
    background: #fff;
    border: 1px solid rgba(1, 14, 42, 0.07);
    border-radius: 16px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(1, 14, 42, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.news-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 94, 20, 0.14);
    border-color: rgba(255, 94, 20, 0.3);
}

/* Card Image Area */
.news-card-img {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #021a4d 100%);
    overflow: hidden;
    flex-shrink: 0;
}

.news-card-img-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.08);
}

.news-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
}

.news-card-date {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 500;
    z-index: 2;
}

.news-card-date i {
    font-size: 0.8rem;
}

/* Card Body */
.news-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.news-highlight-card:hover .news-card-title {
    color: var(--primary-color);
}

.news-card-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(1, 14, 42, 0.06);
    margin-top: auto;
}

.news-card-author {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-card-author i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.news-card-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.3s ease;
}

.news-card-read:hover {
    color: var(--secondary-color);
    gap: 10px;
}

.news-card-read i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.news-card-read:hover i {
    transform: translateX(3px);
}

/* ---- View All Button ---- */
.news-teaser-btn-wrap {
    margin-top: 3rem;
}

.news-teaser-btn {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 28px rgba(255, 94, 20, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-teaser-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(255, 94, 20, 0.35);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .news-teaser-section {
        padding: 70px 0 60px;
    }

    .news-teaser-section::before {
        font-size: 3.5rem;
    }

    .news-teaser-title {
        font-size: 2rem;
    }

    .news-card-img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .news-teaser-title {
        font-size: 1.7rem;
    }
}
