/* Instructor Schedule Section Styles */
.instructor-schedule-section {
    background-color: var(--thm-black-bg);
    padding: 70px 0px 70px;
}

.instructor-schedule-box {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
    border: 1px solid #484035;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
}

.instructor-schedule-box .schedule-title {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.instructor-schedule-box .schedule-title h3 {
    color: var(--thm-white);
    font-size: 24px;
    line-height: 34px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.instructor-schedule-box .schedule-title .border-line {
    position: relative;
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--thm-primary-color);
    clip-path: polygon(0% 0%, 100% 0, 95% 100%, 0% 100%);
}

.instructor-schedule-box .schedule-list {
    position: relative;
    display: block;
}

.instructor-schedule-box .schedule-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #484035;
    padding: 15px 0;
    transition: all 200ms linear;
}

.instructor-schedule-box .schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.instructor-schedule-box .schedule-item:hover {
    background-color: rgba(var(--thm-primary-color-rgb), 0.05);
    padding-left: 10px;
    padding-right: 10px;
}

.instructor-schedule-box .schedule-date {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-primary-color);
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.instructor-schedule-box .schedule-date::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    margin-right: 10px;
}

.instructor-schedule-box .schedule-class {
    position: relative;
    display: block;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .instructor-schedule-box .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .instructor-schedule-box .schedule-date {
        font-size: 16px;
    }
    
    .instructor-schedule-box .schedule-class {
        font-size: 14px;
        padding-left: 18px;
    }
}