.fohow-top-news-carousel {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111827;
}

.fohow-top-news-carousel .carousel-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 4rem;
    overflow: hidden;
    padding: 0 1rem;
}

.fohow-top-news-carousel .carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.fohow-top-news-carousel .carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fohow-top-news-carousel .carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    background: #ffffff;
}

.fohow-top-news-carousel .carousel-content {
    position: relative;
    z-index: 2;
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.fohow-top-news-carousel .carousel-image {
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: auto;
}

.fohow-top-news-carousel .carousel-number {
    font-size: 5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.fohow-top-news-carousel .carousel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.fohow-top-news-carousel .carousel-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 8px;
    font-weight: 500;
}

.fohow-top-news-carousel .carousel-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 40px;
    font-weight: 400;
}

.fohow-top-news-carousel .carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.fohow-top-news-carousel .carousel-btn {
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fohow-top-news-carousel .carousel-btn:hover {
    background: #333333;
    transform: scale(1.05);
}

.fohow-top-news-carousel .arrow-left,
.fohow-top-news-carousel .arrow-right {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: white;
    display: block;
    user-select: none;
}

.fohow-top-news-carousel .arrow-left {
    margin-left: -2px;
}

.fohow-top-news-carousel .arrow-right {
    margin-left: 2px;
}

.fohow-top-news-carousel .carousel-details-btn,
.fohow-top-news-carousel .carousel-details-btn:link,
.fohow-top-news-carousel .carousel-details-btn:visited,
.fohow-top-news-carousel .carousel-details-btn:hover,
.fohow-top-news-carousel .carousel-details-btn:active {
    position: absolute;
    bottom: 40px;
    right: 60px;
    padding: 16px 32px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    outline: none;
    box-shadow: none;
}

.fohow-top-news-carousel .carousel-details-btn:hover,
.fohow-top-news-carousel .carousel-details-btn:focus {
    background: #333333;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.fohow-top-news-carousel--notice {
    padding: 2rem;
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .fohow-top-news-carousel .carousel-wrapper {
        height: 500px;
    }

    .fohow-top-news-carousel .carousel-content {
        padding: 60px 40px;
    }

    .fohow-top-news-carousel .carousel-number {
        font-size: 4rem;
    }

    .fohow-top-news-carousel .carousel-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .fohow-top-news-carousel .carousel-wrapper {
        height: 450px;
        border-radius: 16px;
    }

    .fohow-top-news-carousel .carousel-slide {
        flex-direction: column;
    }

    .fohow-top-news-carousel .carousel-content {
        width: 100%;
        padding: 40px 30px;
    }

    .fohow-top-news-carousel .carousel-image {
        width: 100%;
        height: 50%;
    }

    .fohow-top-news-carousel .carousel-number {
        font-size: 3rem;
    }

    .fohow-top-news-carousel .carousel-title {
        font-size: 1.5rem;
    }

    .fohow-top-news-carousel .carousel-nav {
        left: 30px;
        bottom: 20px;
    }

    .fohow-top-news-carousel .carousel-details-btn,
    .fohow-top-news-carousel .carousel-details-btn:link,
    .fohow-top-news-carousel .carousel-details-btn:visited,
    .fohow-top-news-carousel .carousel-details-btn:hover,
    .fohow-top-news-carousel .carousel-details-btn:active {
        right: 30px;
        bottom: 20px;
        padding: 12px 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .fohow-top-news-carousel .carousel-wrapper {
        height: 400px;
    }

    .fohow-top-news-carousel .carousel-content {
        padding: 30px 20px;
    }

    .fohow-top-news-carousel .carousel-number {
        font-size: 2.5rem;
    }

    .fohow-top-news-carousel .carousel-title {
        font-size: 1.3rem;
    }
}

