/* News Hero Section */
.news-hero-section {
    /* min-height: 85vh; removed to reduce top whitespace */
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #F8FAFC 0%, #E0F2FE 100%);
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center;
    justify-content: center;
    gap: 60px; /* Space between carousel and list */
}

/* Add decorative background elements */
.news-hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(22, 80, 177, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.news-hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(23, 103, 190, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.news-carousel-container {
    width: 100%;
    max-width: 1800px; /* Maximize width for impact */
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.news-card-wrapper {
    display: flex;
    background: #FFFFFF;
    border-radius: 32px; /* More rounded */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1); /* Deeper shadow */
    min-height: 800px; /* Significantly taller */
    transition: all 0.5s ease;
}

.news-image-col {
    flex: 1.2; /* Give image more space */
    background-color: #E5E7EB; /* Placeholder color */
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100%;
    transition: transform 10s ease; /* Slow zoom effect */
}

/* Add hover effect to the whole card to trigger image zoom slightly more */
.news-card-wrapper:hover .news-image-col {
    transform: scale(1.05);
}

.news-content-col {
    flex: 1;
    padding: 100px; /* More internal padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.news-date {
    font-size: calc(18px * var(--find-font-scale));
    color: var(--find-accent-cyan);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-title {
    font-size: calc(64px * var(--find-font-scale)); /* Larger title */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--find-text-primary);
}

.news-summary {
    font-size: calc(20px * var(--find-font-scale)); /* Larger summary text */
    color: var(--find-text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 90%;
}

.news-controls {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.news-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--find-border-color);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--find-text-primary);
}

.news-control-btn:hover {
    background: var(--find-accent-cyan);
    color: #FFFFFF;
    border-color: var(--find-accent-cyan);
}

.news-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.news-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-indicator.active {
    background: var(--find-accent-cyan);
    transform: scale(1.2);
}

/* Animation classes */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-enter-from {
  opacity: 0;
  transform: translateY(20px); /* Slide up slightly on enter */
}

.fade-leave-to {
  opacity: 0;
  transform: translateY(-20px); /* Slide up slightly on leave */
}

@media (max-width: 768px) {
    .news-card-wrapper {
        flex-direction: column;
    }
    
    .news-image-col {
        height: 250px;
        flex: none;
    }
    
    .news-content-col {
        padding: 30px;
    }
    
    .news-title {
        font-size: calc(28px * var(--find-font-scale));
    }
}
