/* ============================================
   NEWS PAGE STYLES
   Colors: #00676d, #0099b0, #f47a20
   ============================================ */

/* PAGE HERO - Gradient Background */
.page-hero {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 100px 0 52px;
    margin-top: 66px;
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-hero-tag {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.22) !important;
}

.page-hero-title {
    font-size: clamp(26px,4vw,46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #ffffff;
    margin: 10px 0 12px;
}

.page-hero-grad {
    background: linear-gradient(135deg, #f47a20 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 560px;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 9px;
}

.breadcrumb span {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 40px;
    }
    .page-hero-sub {
        font-size: 14px;
    }
}

/* FEATURED NEWS */
.featured-news {
    margin-bottom: 20px;
}

.featured-news-card {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    padding: 40px;
    transition: all 0.3s ease;
}

.featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

.featured-news-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-news-icon i {
    font-size: 40px;
    color: white;
}

.featured-news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #0099b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.featured-news-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.featured-news-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.news-meta span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta i {
    font-size: 12px;
    color: #0099b0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00676d;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.2s;
}

.read-more:hover {
    gap: 12px;
    color: #f47a20;
}

/* NEWS GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    padding: 28px;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,103,109,0.1);
    border-color: rgba(0,153,176,0.3);
}

.news-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0,103,109,0.1), rgba(0,153,176,0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.news-card-icon i {
    font-size: 24px;
    background: linear-gradient(135deg, #00676d, #0099b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.news-date {
    font-size: 11px;
    font-weight: 600;
    color: #0099b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #1a1a2e;
}

.news-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00676d;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: gap 0.2s;
}

.news-link:hover {
    gap: 10px;
    color: #f47a20;
}

/* LOAD MORE */
.load-more {
    text-align: center;
    margin-top: 50px;
}

/* NEWSLETTER SECTION */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0,103,109,0.03), rgba(244,122,32,0.02));
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.newsletter-content p {
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 280px;
    padding: 14px 20px;
    border: 1px solid #eef2f6;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: #0099b0;
}

.newsletter-form button {
    padding: 14px 32px;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 12px;
    color: #999;
    margin-top: 16px;
}

/* CTA STRIP */
.cta-strip {
    background: linear-gradient(135deg, #00676d, #0099b0);
    padding: 72px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-text h2 {
    font-size: clamp(20px,3vw,30px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-primary {
    background: #ffffff;
    color: #00676d;
    border: 2px solid #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-primary:hover {
    background: #f8f9fc;
    transform: translateY(-2px);
}

.btn-cta-ghost {
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.45);
    background: transparent;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-cta-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-news-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .featured-news-icon {
        margin: 0 auto;
    }
    
    .news-meta {
        justify-content: center;
    }
    
    .read-more {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-news-content h3 {
        font-size: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-actions .btn {
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .featured-news-card {
        padding: 20px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}