/* LEDS News Section Widget Styles */

.leds-news-section {
    display: flex;
    padding: 96px 64px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    background: var(--color-surface-base-900, #121926);
}

.leds-news-section .leds-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    align-self: stretch;
    max-width: 1312px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.leds-news-section .news-section-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: 'Mont', sans-serif;
    font-size: var(--font-size-6xl, 56px);
    font-style: normal;
    font-weight: var(--font-weight-bold, 700);
    line-height: 100%;
    text-align: center;
    margin: 0;
}

.leds-news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.leds-news-section .news-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.leds-news-section .news-image {
    width: 421px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
}

.leds-news-section .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leds-news-section .news-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.leds-news-section .news-title {
    color: var(--color-text-base-major-alt, #FCFCFD);
    font-family: var(--family-highlight, Poppins);
    font-size: var(--font-size-2xl, 24px);
    font-style: normal;
    font-weight: var(--font-weight-semi-bold, 600);
    line-height: 124%;
    margin: 0;
}

.leds-news-section .news-title a {
    color: var(--color-text-base-major-alt, #FCFCFD);
    text-decoration: none;
    transition: color 0.3s ease;
}

.leds-news-section .news-title a:hover {
    color: var(--color-text-brand-primary, #0099D6);
    text-decoration: none;
}

.leds-news-section .news-text {
    color: var(--color-text-base-minor-alt, #CDD5DF);
    font-family: var(--family-base, Inter);
    font-size: var(--font-size-md, 16px);
    font-style: normal;
    font-weight: var(--font-weight-regular, 400);
    line-height: 124%;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsividade */
@media (max-width: 1024px) {
    .leds-news-section {
        padding: 64px 48px;
    }
    
    .leds-news-section .leds-container {
        gap: 48px;
    }
    
    .leds-news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .leds-news-section .news-image {
        width: 100%;
        height: 200px;
    }
    
    .leds-news-section .news-section-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .leds-news-section {
        padding: 48px 32px;
    }
    
    .leds-news-section .leds-container {
        gap: 32px;
        padding: 0 16px;
    }
    
    .leds-news-section .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .leds-news-section .news-image {
        width: 100%;
        height: 180px;
    }
    
    .leds-news-section .news-title {
        font-size: 20px;
    }
    
    .leds-news-section .news-text {
        font-size: 14px;
    }
    
    .leds-news-section .news-section-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .leds-news-section {
        padding: 32px 24px;
    }
    
    .leds-news-section .leds-container {
        gap: 24px;
        padding: 0 12px;
    }
    
    .leds-news-section .news-grid {
        gap: 20px;
    }
    
    .leds-news-section .news-image {
        height: 160px;
    }
    
    .leds-news-section .news-title {
        font-size: 18px;
    }
    
    .leds-news-section .news-text {
        font-size: 14px;
    }
    
    .leds-news-section .news-section-title {
        font-size: 32px;
    }
}
