.tutor-swiper-00fe31c3 {
    position: relative;
    padding-bottom: 50px; /* Space for dots */
    width: 100%;
}

.tutor-course-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tutor-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tutor-course-img {
    width: 100%;
    height: 250px;
    background: #f0f0f0;
    overflow: hidden;
}

.tutor-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutor-course-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
}

.tutor-course-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tutor-course-title {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a202c;
}

.tutor-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.meta-item {
    background: #edf2f7;
    padding: 4px 10px;
    border-radius: 4px;
}

.tutor-course-btn {
    margin-top: auto;
    display: inline-block;
    padding: 12px 20px;
    background: #3182ce;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.tutor-course-card:hover .tutor-course-btn {
    background: #2b6cb0;
}

/* Swiper UI Adjustments */
.tutor-swiper-00fe31c3 .swiper-button-next,
.tutor-swiper-00fe31c3 .swiper-button-prev {
    color: #3182ce;
    background: rgba(255,255,255,0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tutor-swiper-00fe31c3 .swiper-button-next:after,
.tutor-swiper-00fe31c3 .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.tutor-swiper-00fe31c3 .swiper-pagination-bullet-active {
    background: #3182ce;
}