@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400&display=swap');

.da-carousel-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.da-carousel {
    display: flex;
    gap: 24px;
    animation: da-scroll 40s linear infinite;
    width: max-content;
}

.da-carousel:hover {
    animation-play-state: paused;
}

@keyframes da-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.da-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.da-stars {
    display: flex;
    gap: 3px;
    font-size: 20px;
}

.da-star {
    color: #ffc074;
}

.da-star--empty {
    color: #ddd;
}

.da-text {
    font-size: 15px;
    line-height: 1.65;
    color: #333;
    flex: 1;
}

.da-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.da-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.da-avatar--initials {
    background: #ffc074;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lexend', sans-serif;
}

.da-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.da-author-info strong {
    font-size: 14px;
    font-weight: 400;
    color: #111;
}

.da-author-info span {
    font-size: 12px;
    color: #888;
}
