/* Latest Articles Section */
.latest-articles-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.latest-articles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(188, 49, 42, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.header-text {
    flex: 1;
}

.articles-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #bc312a;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.articles-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Navigation Arrows */
.articles-nav {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover:not(:disabled) {
    background: rgba(188, 49, 42, 0.2);
    border-color: rgba(188, 49, 42, 0.4);
    transform: scale(1.05);
}

.nav-arrow:disabled {
    cursor: not-allowed;
}

.nav-arrow svg {
    stroke: currentColor;
}

/* Carousel */
.articles-carousel {
    position: relative;
    overflow: hidden;
}

.articles-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Article Card */
.article-card {
    flex-shrink: 0;
    width: 380px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(188, 49, 42, 0.3);
    transform: translateY(-4px);
}

.article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Article Image */
.article-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

/* Article Content */
.article-content {
    padding: 24px;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 67px;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-dot {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.article-read-link {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #bc312a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-read-link svg {
    stroke: #bc312a;
    transition: transform 0.3s ease;
}

.article-card:hover .article-read-link {
    color: #e05a53;
}

.article-card:hover .article-read-link svg {
    transform: translateX(3px);
    stroke: #e05a53;
}

/* Responsive */
@media (max-width: 1200px) {
    .article-card {
        width: 340px;
    }
}

@media (max-width: 992px) {
    .latest-articles-section {
        padding: 60px 0 80px;
    }

    .articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .articles-nav {
        align-self: flex-end;
    }

    .article-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .latest-articles-section {
        padding: 50px 0 60px;
    }

    .articles-title {
        font-size: 28px;
    }

    .article-card {
        width: 300px;
    }

    .article-image {
        height: 160px;
    }

    .article-content {
        padding: 20px;
    }

    .article-card-title {
        font-size: 16px;
        min-height: 45px;
    }

    .article-excerpt {
        font-size: 13px;
        min-height: 60px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .articles-track {
        gap: 16px;
    }

    .article-card {
        width: calc(100vw - 48px);
        max-width: 340px;
    }
}
