.latest-news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef0f2 0%, #e9ecef 100%);
    position: relative;
    margin-top: 120px;
    overflow: hidden;
}

.ln-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ln-header {
    text-align: center;
    margin-bottom: 60px;
}

.ln-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.ln-highlight {
    color: #4CAF50;
    position: relative;
}

.ln-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.ln-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto 30px;
}

.ln-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.ln-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #27ae60, transparent);
}

.ln-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Content Wrapper */
.ln-content-wrapper {
    position: relative;
}

.ln-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* News Item */
.ln-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ln-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.06);
}

.ln-visual-area {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ln-image-holder {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}



.ln-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.ln-date-indicator {
    position: absolute;
    bottom: 10px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.ln-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.ln-month {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.ln-text-content {
    padding: 40px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ln-item-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.ln-summary {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
    font-size: 0.95rem;
}

.ln-meta-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ln-time-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ln-calendar-icon {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.ln-full-date {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.ln-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(39, 174, 96, 0.1);
    font-size: 0.9rem;
}

.ln-action-link:hover {
    color: white;
    background: #4CAF50;
    transform: translateX(5px);
}

/* Empty State */
.ln-empty-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.ln-empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.ln-empty-state h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.ln-empty-state p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* View All Button */
.ln-view-all-container {
    text-align: center;
    margin-top: 30px;
}

.ln-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.ln-view-all-btn:hover {
    background: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
}

/* Animation */
@keyframes lnFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ln-item {
    animation: lnFadeInUp 0.6s ease forwards;
}

.ln-item:nth-child(1) { animation-delay: 0.1s; }
.ln-item:nth-child(2) { animation-delay: 0.2s; }
.ln-item:nth-child(3) { animation-delay: 0.3s; }
.ln-item:nth-child(4) { animation-delay: 0.4s; }
.ln-item:nth-child(5) { animation-delay: 0.5s; }
.ln-item:nth-child(6) { animation-delay: 0.6s; }





/* === Filters Section === */
.ln-filter-form {
    margin: 30px 0;
    text-align: center;
}

.ln-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: flex-end;
}

.ln-filter-group {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #444;
}

.ln-filter-group label {
    margin-bottom: 5px;
    font-weight: 600;
}

.ln-filter-group input[type="date"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.ln-filter-group input[type="date"]:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
    outline: none;
}

.ln-filter-btn,
.ln-reset-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.ln-filter-btn {
    background: #4CAF50;
    color: #fff;
    border: none;
}

.ln-filter-btn:hover {
    background: #4CAF50;
}

.ln-reset-btn {
    background: #f3f3f3;
    color: #333;
    border: 1px solid #ddd;
}

.ln-reset-btn:hover {
    background: #e5e5e5;
}
