.tutors-section-9641e05f {
    background: #142455;
    padding: 40px 28px;
    width: 100%;
}

.tutors-grid-9641e05f {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.tutor-card-9641e05f {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutor-card-9641e05f:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.tc-image-wrapper-9641e05f {
    position: relative;
    height: 390px;
    width: 100%;
}

.tc-image-wrapper-9641e05f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-image-overlay-9641e05f {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #ffffff);
}

.tc-top-badges-9641e05f {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.tc-left-badges-9641e05f {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tc-badge-blue-9641e05f, .tc-badge-yellow-9641e05f {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.tc-badge-blue-9641e05f {
    background: #3B82F6;
    color: #ffffff;
}

.tc-badge-yellow-9641e05f {
    background: #FFB629;
    color: #111111;
}

.tc-content-9641e05f {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
    background: #ffffff;
    margin-top: -20px; /* Slight overlap for seamless blend with gradient */
}

.tc-name-9641e05f {
    font-family: 'DM Serif Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1B254B;
    margin: 0;
    line-height: 1.2;
}

.tc-description-9641e05f {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5D6785;
    margin: 0;
}

.tc-section-9641e05f {
    margin-top: 8px;
}

.tc-small-heading-9641e05f {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1B254B;
    margin: 0 0 12px 0;
}



.tc-list-courses-9641e05f {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tc-list-courses-9641e05f li {
    color: #304D8A;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.tc-list-courses-9641e05f li.tc-highlight-courses-9641e05f {
    
    cursor: pointer;
    transition: color 0.3s;
}

.tc-list-courses-9641e05f li.tc-highlight-courses-9641e05f:hover {
    color: #1A4FFF;
}



/* Reset the <a> and <span> inside each course pill */
.tc-course-link-9641e05f {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

/* Arrow inside each course pill */
.tc-course-arrow-9641e05f {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Hover: update color on the inner element, not just the li */
.tc-list-courses-9641e05f li.tc-highlight-courses-9641e05f:hover .tc-course-link-9641e05f {
    color: #1A4FFF;
}

/* Slide arrow on hover */
.tc-list-courses-9641e05f li.tc-highlight-courses-9641e05f:hover .tc-course-arrow-9641e05f {
    transform: translateX(4px);
}


.tc-list-9641e05f {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tc-list-9641e05f li {
    background: #EEF3FF;
    color: #304D8A;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
}

.tc-list-9641e05f li.tc-highlight-9641e05f {
    background: #F0F4FF;
    cursor: pointer;
    transition: color 0.3s;
}

.tc-list-9641e05f li.tc-highlight-9641e05f:hover {
    color: #1A4FFF;
}

.tc-footer-9641e05f {
    padding: 20px;
    border-top: 1px solid #E6EAF2;
    background: #ffffff;
}

.tc-btn-link-9641e05f {
    color: #203A8C;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.tc-arrow-9641e05f {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tc-btn-link-9641e05f:hover {
    color: #1A4FFF;
}

.tc-btn-link-9641e05f:hover .tc-arrow-9641e05f {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .tutors-grid-9641e05f {
        grid-template-columns: repeat(2, 1fr);
    }
    .tutors-section-9641e05f {
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .tutors-grid-9641e05f {
        grid-template-columns: 1fr;
    }
    .tutors-section-9641e05f {
        padding: 24px 16px;
    }
    .tc-image-wrapper-9641e05f {
        height: 320px;
    }
    .tutor-card-9641e05f {
        border-radius: 22px;
    }
}





.tc-search-wrap-9641e05f {
    margin-bottom: 34px;
}
.tc-search-input-9641e05f {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}
.tc-search-input-9641e05f:focus {
    outline: none;
    border-color: #4a90e2;
}
.tc-no-results-9641e05f {
    text-align: center;
    color: #888;
    padding: 24px 0;
}