/* News Section Styles */
.news-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}

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

/* Featured News */
.featured-news {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.featured-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news:hover .featured-img-container img {
    transform: scale(1.05);
}

.featured-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-source {
    color: #2bb0ef;
    font-weight: 700;
    margin-right: 10px;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #333;
}

.featured-excerpt {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

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

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

.secondary-news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.secondary-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #eee;
}

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

.secondary-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.secondary-news-item:hover .secondary-title {
    color: #2bb0ef;
}

.view-all-container {
    text-align: center;
    margin-top: 30px;
}

/* Specialist Tip */
.specialist-tip-block {
    background: linear-gradient(135deg, #3a526a 0%, #2c3e50 100%);
    border-radius: 8px;
    padding: 30px;
    color: #fff;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.specialist-tip-block::before {
    content: "\f0eb"; /* fa-lightbulb-o */
    font-family: FontAwesome;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.1;
    color: #fff;
    transform: rotate(15deg);
}

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

.tip-icon {
    font-size: 2rem;
    color: #f1c40f;
    margin-right: 15px;
}

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

.tip-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 800px;
}

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

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-img-container {
        height: 250px;
    }
    
    .secondary-news-list {
        margin-top: 20px;
    }

    .specialist-tip-block {
        padding: 20px;
        text-align: center;
    }

    .tip-header {
        justify-content: center;
    }
    
    .specialist-tip-block::before {
        display: none;
    }
}
