.comments-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.comment-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.comment-avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
    align-self: flex-start;
}

.comment-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.comments-carousel-wrapper .comment-content {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    flex-direction: column;
    gap: 4px;
}

.comment-author {
    font-weight: 600;
    color: #000;
    text-align: center;
}

.comment-date {
    color: #666;
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #007cba;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

.swiper-pagination-bullet {
    background: #007cba;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    /* Мобильные стили можно настроить через Elementor */
}