/* Schedule Section */
.schedule-card {
    padding: 8px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border-radius: 24px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.stats-section .container {
    position: relative;
}

.stats-section .schedule-icon-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.schedule-content {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 20px;
    color: #fff;
}

.background-instructor {
    background-color: #F0F3EF;
    background-image: url("../images/path-4207.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.schedule-content .schedule-icon {
    background-color: #fff;
    border-radius: 50%;
}

.schedule-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.schedule-icon {
    width: 100px;
    height: 100px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.schedule-icon i {
    color: white;
    font-size: 40px;
}

.schedule-label {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.schedule-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.schedule-time {
    font-size: 16px;
}

.schedule-date {
    font-size: 18px;
    margin: 0;
}

.schedule-empty-line {
    margin-bottom: 0;
    height: 33px;
}

.instructor-badge {
    background: linear-gradient(263deg, #E8A611 0%, #2E3092 100%);
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    border-radius: 24px;
}

.instructor-badge i {
    color: white;
    font-size: 24px;
}

.instructor-badge span {
    color: white;
    font-size: 18px;
}

.instructor-bio {
    font-size: 20px;
    color: var(--text-dark);
    margin: 30px 0;
    line-height: 1.8;
}

.instructor-credentials {
    list-style: none;
    padding: 0;
}

.instructor-credentials li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.instructor-photo-wrapper {
    position: relative;
    background: linear-gradient(to bottom, #F1E7D1, #6B6C93);
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.instructor-photo {
    width: 130%;
    bottom: 1px;
    height: auto;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.instructor-name-tag {
    background: white;
    padding: 20px;
    position: absolute;
    right: -81px;
    text-align: center;
    top: 82px;
    border-radius: 50px;
    transform: rotate(90deg);
    width: 360px;
    font-size: 12px;
}

.instructor-name-tag p {
    margin-bottom: 0;
}

.instructor-name-tag .instructor-name-div {
    width: 275px;
    height: 22px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    font-family: Cormorant;
    color: #d19205;
    display: inline-block;
    margin-bottom: 14px;
    text-align: center;
}

.instructor-name-div::after {
    content: "";
    border-bottom: 1px solid #ccc;
    opacity: 0.4;
    position: absolute;
    bottom: -10px;
    height: 1px;
    background-color: #ccc;
    width: 100%;
    left: 0;
}

.instructor-name-tag h5 {
    color: var(--primary-orange);
    font-size: 30px;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 767.98px) {
    .instructor-photo {
        width: 100%;
    }
}