﻿/* ============================================
       FEATURED AUTHORS SECTION
       ============================================ */
.featured-authors-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 50%, #1e3a5f 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

    /* Section header */
    .featured-authors-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .featured-authors-section .section-title-group {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .featured-authors-section .section-icon {
        width: 48px;
        height: 48px;
        background: var(--author-secondary, #fef3c7);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: var(--author-primary, #b45309);
        flex-shrink: 0;
    }

    .featured-authors-section .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.25rem;
    }

    .featured-authors-section .section-subtitle {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    /* Carousel navigation */
    .featured-authors-section .carousel-nav {
        display: flex;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .featured-authors-section .carousel-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .featured-authors-section .carousel-btn:hover {
            background: var(--author-primary, #b45309);
            border-color: var(--author-primary, #b45309);
        }

    /* Carousel track */
    .featured-authors-section .featured-authors-carousel {
        overflow: hidden;
        margin: 0 -0.5rem;
    }

    .featured-authors-section .carousel-track {
        display: flex;
        gap: 1.25rem;
        padding: 0.5rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .featured-authors-section .carousel-track::-webkit-scrollbar {
            display: none;
        }

    /* Proceed button */
    .featured-authors-section .section-action {
        margin-top: 1.5rem;
        text-align: center;
    }

    .featured-authors-section .btn-proceed {
        background: linear-gradient(135deg, var(--author-accent, #d97706), var(--author-primary, #b45309));
        color: white;
        border: none;
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        font-weight: 700;
        border-radius: 9999px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    }

        .featured-authors-section .btn-proceed:hover {
           /* transform: translateY(-2px);*/
            box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
        }

/* ============================================
       RESPONSIVE
       ============================================ */
@media (max-width: 768px) {
    .featured-authors-section {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

        .featured-authors-section .section-header {
            flex-direction: column;
        }

        .featured-authors-section .carousel-nav {
            align-self: flex-end;
        }

        .featured-authors-section .section-title {
            font-size: 1.25rem;
        }
}
.text-cyan {
    color: #00d4ff;
}

.btn-outline-cyan {
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

    .btn-outline-cyan:hover {
        background: #00d4ff;
        color: #000;
    }

/*.card:hover {
    transform: translateY(-3px);
}*/

.hover-opacity-100 {
    opacity: 1 !important;
}