/* ============================================
   INDIRA CONSULTANCY - NEWS & INSIGHTS PAGE STYLES
   Color Scheme: Dark Navy (#1E2A3A), Gold (#F8CA3B), White
   Fonts: Kaisei Decol (headings), Poppins (body/buttons)
   ============================================ */

:root {
    --news-navy: #1E2A3A;
    --news-navy-light: #2a3a4d;
    --news-navy-dark: #141e2a;
    --news-gold: #F8CA3B;
    --news-gold-hover: #e6b832;
    --news-white: #ffffff;
    --news-gray: #6c757d;
    --news-gray-light: #f5f7fa;
    --news-gray-bg: #FAF9F6;
    --news-text: #333333;
    --news-text-light: #666666;
}

/* ============================================
   HERO SECTION
   ============================================ */
.news-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.news-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center right;
    z-index: 0;
}

.news-hero .container {
    position: relative;
    z-index: 2;
}

/* Frosted Glass Card */
.news-hero-card {
    max-width: 520px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 45px 50px;
}

.news-hero-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--news-gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.news-hero-badge .badge-line {
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: var(--news-gold);
}

.news-hero-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--news-white);
    line-height: 1.2;
    margin-bottom: 30px;
}

.news-hero-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--news-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.news-hero-link .link-arrow {
    width: 32px;
    height: 32px;
    background: var(--news-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-hero-link .link-arrow i {
    color: var(--news-navy);
    font-size: 12px;
}

.news-hero-link:hover {
    color: var(--news-gold-hover);
}

.news-hero-link:hover .link-arrow {
    background: var(--news-gold-hover);
    transform: translateX(4px);
}

/* Bottom Decoration - Two Lines */
.news-hero-decoration {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.news-hero-decoration .deco-line {
    display: block;
    height: 3px;
    border-radius: 2px;
}

.news-hero-decoration .deco-white {
    width: 50px;
    background: var(--news-white);
}

.news-hero-decoration .deco-gold {
    width: 35px;
    background: var(--news-gold);
}

/* ============================================
   NEWS & INSIGHTS SECTION
   ============================================ */
.news-insights-section {
    padding: 80px 0;
    background-color: var(--news-white);
}

.news-insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.news-insights-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--news-navy);
    margin-bottom: 8px;
}

.news-insights-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--news-text-light);
    max-width: 400px;
}

.news-insights-filters {
    display: flex;
    gap: 10px;
}

.news-filter-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--news-text);
    background: var(--news-white);
    border: 1px solid #e0e0e0;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-filter-btn:hover {
    border-color: var(--news-navy);
}

.news-filter-btn.active {
    background: var(--news-gold);
    border-color: var(--news-gold);
    color: var(--news-navy);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin-bottom: 50px;
}

.news-card {
    position: relative;
    background: var(--news-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.news-card-large {
    grid-row: span 2;
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-large .news-card-image {
    height: 100%;
    min-height: 350px;
}

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

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

.news-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--news-white);
    background: var(--news-gold);
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 5;
}

.news-card-date {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--news-white);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.news-card-content {
    padding: 20px;
}

.news-card-large .news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20, 30, 42, 0.95) 0%, transparent 100%);
    padding: 30px 20px;
}

.news-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--news-navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-large .news-card-title {
    color: var(--news-white);
    font-size: 20px;
}

.news-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--news-text-light);
    line-height: 1.6;
}

.news-card-large .news-card-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Sub-articles slider inside each news card */
.news-subarticles-slider {
    margin: 10px 20px 16px;
    padding-top: 10px;
    border-top: 1px solid #e6e8ec;
    position: relative;
}

.news-card-large .news-subarticles-slider {
    border-top-color: rgba(255, 255, 255, 0.25);
}

.news-subarticles-track {
    position: relative;
    min-height: 56px;
    overflow: hidden;
}

.news-subarticles-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.news-subarticle {
    flex: 0 0 100%;
    min-width: 0;
    text-decoration: none;
    display: block;
}

.news-subarticle-meta {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--news-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.news-card-large .news-subarticle-meta {
    color: rgba(255, 255, 255, 0.8);
}

.news-subarticle-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--news-navy);
    line-height: 1.5;
}

.news-card-large .news-subarticle-title {
    color: #ffffff;
}

/* Navigation Arrows */
.news-subarticles-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--news-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
}

.news-subarticles-slider:hover .news-subarticles-nav {
    opacity: 1;
    pointer-events: auto;
}

.news-subarticles-prev {
    left: -10px;
}

.news-subarticles-next {
    right: -10px;
}

.news-subarticles-nav:hover {
    background: var(--news-gold);
    color: var(--news-navy);
    box-shadow: 0 4px 12px rgba(248, 202, 59, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.news-subarticles-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.news-card-large .news-subarticles-nav {
    background: rgba(30, 42, 58, 0.8);
    color: var(--news-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.news-card-large .news-subarticles-nav:hover {
    background: var(--news-gold);
    color: var(--news-navy);
}

.news-subarticles-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}

.news-subarticles-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: #cfd3dc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-subarticles-dot:hover {
    background-color: var(--news-gold);
    transform: scale(1.2);
}

.news-subarticles-dot.active {
    background-color: var(--news-gold);
    width: 20px;
    border-radius: 3px;
}

/* Article slider (for articles with subarticles) */
.news-article-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-article-slider-track {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.news-article-slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
}

.news-article-slide {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.news-article-slide .news-card-main-link {
    display: block;
    height: 100%;
    position: relative;
}

.news-article-slide .news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    z-index: 1;
}

.news-card-large .news-article-slide .news-card-image {
    height: 100%;
    min-height: 350px;
}

.news-article-slide .news-card-content {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.news-card-large .news-article-slide .news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20, 30, 42, 0.98) 0%, rgba(20, 30, 42, 0.85) 50%, transparent 100%);
    padding: 40px 20px 30px;
    z-index: 3;
    min-height: 120px;
}

.news-article-slide .news-card-title {
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-large .news-article-slide .news-card-title {
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-article-slide .news-card-desc {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Navigation Arrows for Article Slider */
.news-article-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--news-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
}

.news-article-slider:hover .news-article-slider-nav {
    opacity: 1;
    pointer-events: auto;
}

.news-article-slider-prev {
    left: 10px;
}

.news-article-slider-next {
    right: 10px;
}

.news-article-slider-nav:hover {
    background: var(--news-gold);
    color: var(--news-navy);
    box-shadow: 0 6px 16px rgba(248, 202, 59, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.news-article-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.news-card-large .news-article-slider-nav {
    background: rgba(30, 42, 58, 0.8);
    color: var(--news-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.news-card-large .news-article-slider-nav:hover {
    background: var(--news-gold);
    color: var(--news-navy);
}

.news-article-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.news-article-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-article-slider-dot:hover {
    background-color: var(--news-gold);
    transform: scale(1.2);
}

.news-article-slider-dot.active {
    background-color: var(--news-gold);
    width: 20px;
    border-radius: 3px;
}

/* View All Link */
.news-view-all {
    text-align: center;
}

.news-view-all-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--news-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.news-view-all-link:hover {
    color: var(--news-gold-hover);
    gap: 14px;
}

/* ============================================
   VALUES / ETHOS SECTION
   ============================================ */
.news-ethos-section {
    padding: 80px 0;
    background-color: var(--news-gray-bg);
}

.news-ethos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-ethos-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--news-gold);
    display: block;
    margin-bottom: 8px;
}

.news-ethos-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--news-navy);
}

.news-ethos-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--news-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-ethos-link:hover {
    color: var(--news-gold);
    gap: 12px;
}

/* Values Grid */
.news-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-value-card {
    background: var(--news-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.news-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-value-image {
    height: 180px;
    overflow: hidden;
}

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

.news-value-card:hover .news-value-image img {
    transform: scale(1.05);
}

.news-value-content {
    padding: 24px;
}

.news-value-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--news-gold);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.news-value-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--news-navy);
    margin-bottom: 8px;
}

.news-value-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--news-text-light);
    line-height: 1.6;
}

/* ============================================
   MARKET INTELLIGENCE CTA SECTION
   ============================================ */
.news-market-section {
    padding: 60px 0;
    background-color: var(--news-navy);
}

.news-market-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.news-market-content {
    max-width: 600px;
}

.news-market-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--news-gold);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.news-market-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--news-white);
    margin-bottom: 12px;
}

.news-market-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.news-market-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--news-navy);
    background: var(--news-gold);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.news-market-btn:hover {
    background: var(--news-gold-hover);
    color: var(--news-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 202, 59, 0.35);
}

/* ============================================
   TURN INSIGHTS INTO ACTION SECTION
   ============================================ */
.news-action-section {
    padding: 100px 0;
    background-color: var(--news-white);
}

.news-action-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--news-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.news-action-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--news-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.news-action-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--news-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-action-link:hover {
    color: var(--news-gold-hover);
    gap: 12px;
}

/* Services List */
.news-services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--news-gray-bg);
    padding: 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.news-service-item:hover {
    background: var(--news-white);
    border-color: var(--news-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-service-icon {
    width: 50px;
    height: 50px;
    background: var(--news-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-service-icon i {
    font-size: 20px;
    color: var(--news-navy);
}

.news-service-content {
    flex: 1;
}

.news-service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--news-navy);
    margin-bottom: 4px;
}

.news-service-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--news-text-light);
    margin: 0;
}

.news-service-arrow {
    width: 36px;
    height: 36px;
    background: var(--news-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.news-service-arrow i {
    font-size: 12px;
    color: var(--news-navy);
}

.news-service-item:hover .news-service-arrow {
    background: var(--news-navy);
}

.news-service-item:hover .news-service-arrow i {
    color: var(--news-white);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.news-testimonials-section {
    padding: 100px 0;
    background-color: var(--news-gray-bg);
}

.news-testimonials-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--news-gold);
    display: block;
    text-align: center;
    margin-bottom: 12px;
}

.news-testimonials-title {
    font-family: 'Kaisei Decol', serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--news-navy);
    text-align: center;
    margin-bottom: 50px;
}

.news-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-testimonial-card {
    background: var(--news-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.news-testimonial-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--news-text);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
}

.news-testimonial-quote .quote-mark {
    font-family: 'Kaisei Decol', serif;
    font-size: 60px;
    color: var(--news-gold);
    line-height: 0;
    position: absolute;
    top: -10px;
    left: -5px;
    opacity: 0.3;
}

.news-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--news-navy);
    margin-bottom: 2px;
}

.author-role {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--news-text-light);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
    .news-hero {
        min-height: 500px;
        padding: 80px 0 70px;
    }
    
    .news-hero-card {
        max-width: 450px;
        padding: 35px 40px;
    }
    
    .news-hero-title {
        font-size: 36px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card-large {
        grid-row: span 1;
    }
    
    .news-card-large .news-card-image {
        height: 200px;
        min-height: 200px;
    }
    
    .news-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-values-grid .news-value-card:last-child {
        grid-column: span 2;
    }
    
    .news-action-title {
        font-size: 32px;
    }
    
    .news-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-testimonials-grid .news-testimonial-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .news-hero {
        min-height: 450px;
        padding: 70px 0 60px;
    }
    
    .news-hero-card {
        max-width: 100%;
        padding: 30px;
        border-radius: 12px;
    }
    
    .news-hero-badge {
        font-size: 11px;
    }
    
    .news-hero-badge .badge-line {
        width: 28px;
    }
    
    .news-hero-title {
        font-size: 30px;
        margin-bottom: 24px;
    }
    
    .news-hero-decoration {
        bottom: 35px;
    }
    
    .news-hero-decoration .deco-white {
        width: 40px;
    }
    
    .news-hero-decoration .deco-gold {
        width: 28px;
    }
    
    .news-insights-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card-large {
        grid-row: span 1;
    }
    
    .news-card-large .news-card-image {
        height: 220px;
        min-height: 220px;
    }
    
    .news-subarticles-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .news-subarticles-prev {
        left: -5px;
    }
    
    .news-subarticles-next {
        right: -5px;
    }
    
    .news-article-slider-nav {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .news-article-slider-prev {
        left: 5px;
    }
    
    .news-article-slider-next {
        right: 5px;
    }
    
    
    .news-ethos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news-values-grid {
        grid-template-columns: 1fr;
    }
    
    .news-values-grid .news-value-card:last-child {
        grid-column: span 1;
    }
    
    .news-market-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .news-market-title {
        font-size: 26px;
    }
    
    .news-action-section {
        padding: 70px 0;
    }
    
    .news-action-title {
        font-size: 28px;
    }
    
    .news-testimonials-title {
        font-size: 28px;
    }
    
    .news-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .news-testimonials-grid .news-testimonial-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .news-hero {
        min-height: 400px;
        padding: 60px 0 50px;
    }
    
    .news-hero-card {
        padding: 25px;
    }
    
    .news-hero-badge {
        font-size: 10px;
        gap: 10px;
    }
    
    .news-hero-badge .badge-line {
        width: 24px;
    }
    
    .news-hero-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .news-hero-link {
        font-size: 13px;
    }
    
    .news-hero-link .link-arrow {
        width: 28px;
        height: 28px;
    }
    
    .news-hero-decoration {
        bottom: 25px;
    }
    
    .news-insights-section {
        padding: 60px 0;
    }
    
    .news-insights-title {
        font-size: 26px;
    }
    
    .news-filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .news-ethos-section {
        padding: 60px 0;
    }
    
    .news-ethos-title {
        font-size: 26px;
    }
    
    .news-market-section {
        padding: 50px 0;
    }
    
    .news-action-section {
        padding: 50px 0;
    }
    
    .news-service-item {
        padding: 18px;
    }
    
    .news-testimonials-section {
        padding: 60px 0;
    }
    
    .news-testimonial-card {
        padding: 24px;
    }
    
    .news-article-slider-nav {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    
    .news-article-slider-prev {
        left: 5px;
    }
    
    .news-article-slider-next {
        right: 5px;
    }
    
    
    .news-subarticles-nav {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    
    .news-subarticles-prev {
        left: 0;
    }
    
    .news-subarticles-next {
        right: 0;
    }
    
    .news-subarticles-slider:hover .news-subarticles-nav {
        opacity: 0.8;
    }
}
