/* --- LAYOUT --- */
.tvk-profile-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
}

/* --- HEADER SECTION --- */
.tvk-profile-header {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

/* Profile Photo */
.tvk-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 4px solid #fff;
    flex-shrink: 0;
}

/* Meta Data (Right side) */
.tvk-profile-meta {
    flex: 1;
}

.tvk-profile-meta h1 {
    margin: 0 0 15px 0;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    color: #222;
}

.tvk-role-badge {
    display: inline-block;
    background: #DC1D50;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(220, 29, 80, 0.2);
}

/* Contacts List */
.tvk-contacts {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.tvk-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.tvk-contact-row svg {
    width: 18px;
    height: 18px;
    color: #DC1D50;
    opacity: 0.8;
}

.tvk-contact-row a {
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.tvk-contact-row a:hover {
    color: #DC1D50;
    border-bottom-color: #DC1D50;
}

/* --- BIO SECTION --- */
.tvk-profile-bio {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.tvk-profile-bio p {
    margin-bottom: 25px;
}

.tvk-profile-bio h2, 
.tvk-profile-bio h3 {
    margin: 40px 0 20px;
    font-weight: 700;
    color: #111;
}

/* --- GROUPS SECTION --- */
.tvk-profile-groups h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

/* Override Schedule styles to fit profile context better */
.tvk-profile-groups .tvk-cal-controls {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .tvk-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .tvk-profile-img {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .tvk-contact-row {
        justify-content: center;
    }

    .tvk-profile-meta h1 {
        font-size: 30px;
    }
}