/* ===== TEAM DETAILS SECTION ===== */
.team__details-area {
    position: relative;
}

.section-pt-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Container & Grid */
.team__details-area .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.team__details-area .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.team__details-area .gutter-24 > * {
    padding: 0 12px;
}

.team__details-area .justify-content-center {
    justify-content: center;
}

.team__details-area .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
}

.team__details-area .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
}

.team__details-area .col-md-8 {
    flex: 0 0 auto;
}

/* Image */
.team__details-img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.team__details-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.team__details-content {
    padding-left: 30px;
}

.team__details-content .title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.team__details-content .sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fa4047;
    margin-bottom: 20px;
}

.team__details-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

/* Blog Sidebar / Categories Widget */
.blog__sidebar {
    margin-bottom: 30px;
}

.blog__widget.widget_categories {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
}

.widget_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget_categories ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.widget_categories ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget_categories ul li a {
    display: block;
    color: #1a202c;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.widget_categories ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fa4047;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.widget_categories ul li a:hover {
    color: #fa4047;
    padding-left: 25px;
}

.widget_categories ul li a:hover::before {
    width: 10px;
    height: 10px;
}

/* Button */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-two {
    background-color: #fa4047;
    color: #ffffff;
}

.btn-two:hover {
    background-color: #1a202c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(250, 64, 71, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .team__details-area .col-lg-5,
    .team__details-area .col-lg-7 {
        width: 100%;
    }
    
    .team__details-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .section-pt-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .team__details-area .col-md-8 {
        width: 100%;
    }
    
    .team__details-content .title {
        font-size: 28px;
    }
    
    .section-pt-120 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .blog__widget.widget_categories {
        padding: 20px;
    }
}
