/* --- LAYOUT WRAPPER --- */
.tvk-single-wrapper {
    background-color: #fff;
    font-family: inherit;
}

.tvk-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO SECTION --- */
.tvk-hero {
    padding: 60px 0 50px;
    color: #fff;
    margin-bottom: 50px;
    border-radius: 0 0 20px 20px;
}

.tvk-hero-title {
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #fff !important;
}

.tvk-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 17px;
    font-weight: 500;
    opacity: 0.95;
}

.tvk-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tvk-meta-item svg { width: 18px; height: 18px; }

/* --- MAIN GRID --- */
.tvk-main-grid {
    display: grid;
    /* Sidebar 320px, Content Rest */
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* --- SIDEBAR WIDGETS --- */
.tvk-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tvk-sidebar-widget {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.tvk-w-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

/* Next Practice Widget */
.tvk-widget-next {
    border-left: 5px solid #DC1D50;
}

.tvk-np-date {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    text-transform: capitalize;
}

.tvk-np-time {
    font-size: 18px;
    color: #555;
    margin-top: 5px;
}

.tvk-np-room {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    background: #f5f5f5;
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Instructor Widget */
.tvk-widget-instructor {
    padding: 0; /* Removing padding for better photo fit */
    overflow: hidden;
}

.tvk-inst-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fcfcfc;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}
.tvk-inst-header:hover { background: #f5f5f5; }

.tvk-inst-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tvk-inst-meta { flex: 1; }

.tvk-inst-role {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #DC1D50;
    display: block;
    margin-bottom: 2px;
}

.tvk-inst-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

/* Instructor Contacts List */
.tvk-inst-contacts {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
}

.tvk-inst-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}
.tvk-inst-contacts li:last-child { margin-bottom: 0; }

.tvk-inst-contacts a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.tvk-inst-contacts a:hover { border-bottom-color: #333; }

.tvk-inst-contacts svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.tvk-inst-link {
    display: block;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    text-decoration: none;
    transition: color 0.2s;
}
.tvk-inst-link:hover { color: #DC1D50; }

/* Info Pills (Age/Access) */
.tvk-info-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
}
.tvk-info-pill .icon-wrap {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.tvk-info-pill svg { width: 16px; height: 16px; color: #333; }

/* --- CONTENT AREA --- */
.tvk-body-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}
.tvk-body-text p { margin-bottom: 25px; }
.tvk-body-text h2, .tvk-body-text h3 {
    margin: 40px 0 20px;
    font-weight: 700;
    color: #111;
}

/* Full Schedule Section */
.tvk-section-divider {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.tvk-section-h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 700;
}

/* Gallery */
.tvk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.tvk-gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}
.tvk-gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .tvk-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Reorder: Hero -> Next Practice -> Content -> Instructor */
    .tvk-sidebar { order: 1; }
    .tvk-content-area { order: 2; }
    
    /* Make instructor widget narrower on mobile if needed, or full width */
    .tvk-sidebar-widget { max-width: 100%; }
}