/* NEW TEACHER HERO */

.teacher-hero-new {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    direction: rtl;
    margin-bottom: 30px;
    align-items: stretch;
}


/* PROFILE CARD */

.teacher-profile-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.teacher-profile-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.teacher-profile-card h1 {
    margin: 18px 0 8px;
    font-size: 26px;
    font-weight: 800;
}

.teacher-verified {
    color: #12a85a;
    font-size: 14px;
    margin-top: 8px;
}


/* TRUST BOX */

.teacher-trust-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.teacher-trust-item {
    background: #f8faf9;
    border-radius: 18px;
    padding: 15px 12px;
    min-width: 95px;
    border: 1px solid #eee;
    text-align: center;
}

.teacher-trust-item strong {
    display: block;
    font-size: 22px;
    color: #12a85a;
    font-weight: 800;
}

.teacher-trust-item span {
    display: block;
    font-size: 12px;
    color: #555;
    margin-top: 8px;
}


/* BOOKING CARD */

.teacher-booking-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    box-sizing: border-box;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.teacher-booking-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.teacher-price-info {
    background: #fff8e8;
    border-radius: 12px;
    padding: 12px;
    margin-top: 15px;
}

.teacher-booking-card a {
    margin-top: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #12a85a;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}


/* VIDEO SECTION */

.teacher-video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    direction: rtl;
}


.teacher-intro-video,
.teacher-class-video {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}


.teacher-intro-video {
    position: relative;
}


.teacher-intro-video .profile_video_box {
    width: 100%;
    height: 100%;
}


.teacher-intro-video .profile_video_box i {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}


.teacher-intro-video-player {
    display: block;
    width: 100% !important;
    height: 360px !important;
    object-fit: cover;
}
.teacher-class-video {
    position: relative;
    overflow: hidden;
}

.teacher-class-video video {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
}