/* Our Insights Section */
.insights-section {
    background-color: #f5f5f5;
    padding: 8rem 0;
    width: 100%;
}
.article-link {
    text-decoration: none;
}

.insights-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.insights-header {
    flex: 1;
    max-width: 600px;
    margin-bottom: 0;
}

.insights-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.latest-article {
    max-width: 100%;
}

.latest-article h2 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: #ec252e;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.latest-article p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #979696;
}

.articles-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.article-card {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 180px;
}

.article-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #ec252e;
    transition: width 0.3s ease;
    z-index: 1;
}

.article-card:hover::before {
    width: 100%;
}

.article-card::after {
    content: '↗';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #000000;
    opacity: 1;
    transform: translate(0, 0);
    z-index: 3;
    transition: color 0.3s ease;
}

.article-card:hover::after {
    color: #ffffff;
}

.article-card:hover .article-date,
.article-card:hover .article-content h4,
.article-card:hover .article-category,
.article-card:hover .article-author {
    color: #ffffff;
}

.article-date {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: #979696;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.article-content {
    position: relative;
    z-index: 2;
}

.article-content h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #000000;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-content h4 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h4 a:hover {
    color: #ff0000; /* Optional: adds a red color on hover to maintain interactivity feedback */
}

.article-meta {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.article-category,
.article-author {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: #979696;
    transition: color 0.3s ease;
}

/* Responsive Design for Insights Section */
@media (max-width: 1200px) {
    .insights-container {
        flex-direction: column;
        gap: 3rem;
    }

    .insights-header {
        max-width: 100%;
    }

    .latest-article {
        max-width: 600px;
    }

    .articles-grid {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .insights-section {
        padding: 4rem 0;
    }

    .latest-article h2 {
        font-size: 2.5rem;
    }

    .article-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .article-date {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 0;
    }

    .article-content h4 {
        font-size: 1.2rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        background: #ffffff;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .slider-nav svg {
        width: 16px;
        height: 16px;
    }

    .prev-slide {
        left: 8px;
    }

    .next-slide {
        right: 8px;
    }

    .testimonial-slides {
        padding: 0 40px; /* Add padding to prevent content from going under arrows */
    }
} 