/* News Section Styles - Refined Design System */
:root {
    --news-primary-color: #D4AF37;
    /* Gold/Lagoon */
    --news-primary-soft: rgba(212, 175, 55, 0.1);
    --news-bg-color: #ffffff;
    --news-card-bg: #ffffff;
    --news-text-color: #002B5B;
    /* Navy/Lagoon */
    --news-meta-color: #888888;
    --news-accent-blue: #2bb0ef;
    /* Skill Blue for specific labels */
    --news-tip-gradient-start: #002B5B;
    --news-tip-gradient-end: #001a35;
}

.news-section {
    padding: 60px 0;
    background-color: var(--news-bg-color);
}

.news-section .title-section {
    margin-bottom: 30px;
}

.news-section .title-section .title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Featured News */
.featured-news {
    background: var(--news-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.featured-news:hover {
    transform: translateY(-5px);
}

.featured-img-container {
    height: 380px;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.featured-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 30px;
    flex-grow: 1;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--news-meta-color);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-source {
    color: var(--news-accent-blue);
    margin-right: 15px;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.news-date {
    color: #aaa;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--news-text-color);
    line-height: 1.3;
}

.featured-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    color: var(--news-accent-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more-link i {
    margin-left: 5px;
    transition: transform 0.2s;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Secondary List */
.secondary-news-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secondary-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.secondary-news-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 15px;
    text-decoration: none !important;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.secondary-news-item:hover {
    border-color: var(--news-accent-blue);
    transform: translateX(5px);
}

.secondary-img-box {
    width: 90px;
    height: 75px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.secondary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secondary-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* See All Button */
.see-all-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1.5px solid var(--news-accent-blue);
    border-radius: 6px;
    color: var(--news-accent-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s;
}

.btn-see-all:hover {
    background: var(--news-accent-blue);
    color: #fff;
}

/* Tip Block */
.specialist-tip-block {
    background: linear-gradient(135deg, var(--news-tip-gradient-start) 0%, var(--news-tip-gradient-end) 100%);
    border-radius: 15px;
    padding: 35px;
    color: #fff;
    margin-top: 50px;
    box-shadow: 0 15px 40px rgba(0, 43, 91, 0.2);
}

.tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tip-icon {
    font-size: 1.8rem;
    color: var(--news-primary-color);
    margin-right: 15px;
}

.tip-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.specialist-tip-block p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .featured-img-container {
        height: 300px;
    }
}