  .carousel-wrapper {
        position: relative;
    }

    .carousel-scroll {
        gap: 20px;
        padding: 10px 15px;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .carousel-scroll::-webkit-scrollbar {
        display: none;
    }

    .author-card {
        flex: 0 0 auto;
        width: 120px;
        text-align: center;
        cursor: pointer;
    }

    .author-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .author-img:hover {
        transform: scale(1.05);
    }

    .author-name {
        margin-top: 10px;
        font-style: italic;
        font-size: 14px;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #000;
        color: #fff;
        border: none;
        border-radius: 50%;
        padding: 10px;
        z-index: 10;
    }

    /* .carousel-btn.left {
        left: 0;
    }

    .carousel-btn.right {
        right: 0;
    } */