/* Sellers Page Styling */

.twm-team-view-grid {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.twm-team-view-grid:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.twm-team-media {
    position: relative;
    overflow: hidden;
    height: 380px;
}

.twm-team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.twm-team-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.twm-team-view-grid:hover .twm-team-media-overlay {
    opacity: 1;
}

.twm-team-view-grid:hover .twm-team-media img {
    transform: scale(1.08);
}

.twm-team-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.twm-team-info .twm-title {
    margin-bottom: 8px;
}

.twm-team-info .twm-title a {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 800;
    transition: color 0.3s ease;
}

.twm-team-info .twm-title a:hover {
    color: #0ABAB5;
}

.twm-work-time {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.twm-work-time i {
    color: #0ABAB5;
    font-size: 13px;
}

.twm-team-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.twm-team-actions a {
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-call {
    background-color: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #eee;
}

.btn-call:hover {
    background-color: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.btn-telegram {
    background-color: #0ABAB5;
    color: #fff;
    border: 1px solid #0ABAB5;
}

.btn-telegram:hover {
    background-color: #088e8b;
    border-color: #088e8b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .twm-team-media {
        height: 300px;
    }
}

.breadcrumb-wrap {
    padding: 20px 0;
    background: #f4f4f4;
    margin-top: 80px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.site-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
