/* Single Team Member Page Styles */
.rawcut-team-single {
    padding: 0 0 60px 0;
}

/* Breadcrumb Navigation */
.team-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    margin-bottom: 40px;
}

.team-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-back-link:hover {
    color: #333;
    text-decoration: none;
}

.team-back-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.team-back-link:hover i {
    transform: translateX(-3px);
}

.team-single-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 50px;
    padding: 80px 0;
}

/* Left Column */
.team-single-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-single-image {
    border-radius: 20px;
    overflow: hidden;
    background: #3a3a3a;
}

.team-single-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-single-sidebar {

}

.team-sidebar-section {
    margin-bottom: 25px;
}

.team-sidebar-section:last-of-type {
    margin-bottom: 0;
}

.team-sidebar-section h3 {
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: none;
}

.team-sidebar-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-sidebar-section ul li {
    list-style: none;
    line-height: 1.6;
    margin-bottom: 6px;
    padding-left: 0;
}

.team-sidebar-section ul li:before {
    content: none;
}

.team-single-cta {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.team-book-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    border: 1px solid #443a35;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-book-btn:hover {
    background: #443a35;
    color: white;
    text-decoration: none;
}

/* Right Column */
.team-single-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.team-single-position {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 300;
    padding-bottom: 0;
}

.team-single-name {
    font-weight: 400;
    color: #443a35;
    line-height: 1.2;
    margin-bottom: 0 !important;
}

.team-single-quote {
    font-style: italic;
    line-height: 1.7;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.team-single-quote p {
    margin: 0;
}

.team-single-content {
    line-height: 1.8;
}

.team-single-content p {

}

.team-single-content p:last-child {
    margin-bottom: 0;
}

.team-single-content strong {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-single-container {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-single-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }
    
    .team-single-name {
        font-size: 32px;
    }
    
    .team-single-left {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .rawcut-team-single {
        padding: 40px 0;
    }
    
    .team-single-name {
        font-size: 28px;
    }
    
    .team-single-sidebar {

    }
    
    .team-single-content {
        font-size: 14px;
    }

    .team-single-right {
        padding-top: 50px;
    }
}
