.tb-team-section,
.tb-team-section * {
    box-sizing: border-box;
}

.tb-team-section {
    background: #0b0b0a;
    padding: 70px 60px 80px;
    font-family: Inter, Arial, Helvetica, sans-serif;
}

.tb-team-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.tb-team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 56px;
}

.tb-team-eyebrow {
    color: #d7f23d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    margin: 0 0 18px;
}

.tb-team-title {
    color: #f3f3f1;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0;
    letter-spacing: -.01em;
}

.tb-team-header-right {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.tb-team-sub {
    color: #9c9c98;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.tb-team-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #d7f23d;
    color: #101009;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 8px 8px 8px 22px;
    border-radius: 999px;
    white-space: nowrap;
    transition: transform .2s ease, filter .2s ease, background-color .2s ease, color .2s ease;
}

.tb-team-btn:hover,
.tb-team-btn:focus {
    color: #101009;
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.tb-team-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #101009;
    color: #d7f23d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tb-team-btn-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    transform: rotate(45deg);
}

.tb-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.tb-team-card {
    background: #141413;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #1f1f1c;
}

.tb-team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.tb-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.tb-team-card:hover .tb-team-photo img {
    transform: scale(1.05);
}

.tb-team-share-toggle,
.tb-team-social-stack {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
}

.tb-team-share-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #d7f23d;
    color: #101009;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity .3s ease, transform .35s cubic-bezier(.4,0,.2,1);
}

.tb-team-share-toggle svg,
.tb-team-social-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

.tb-team-card:hover .tb-team-share-toggle,
.tb-team-card:focus-within .tb-team-share-toggle {
    opacity: 0;
    transform: translateY(8px) scale(.7);
}

.tb-team-social-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tb-team-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2c2c29;
    color: #e7e7e3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s cubic-bezier(.4,0,.2,1), background-color .2s ease, color .2s ease;
}

.tb-team-social-icon:hover,
.tb-team-social-icon:focus {
    background: #d7f23d;
    color: #101009;
}

.tb-team-card:hover .tb-team-social-icon,
.tb-team-card:focus-within .tb-team-social-icon {
    opacity: 1;
    transform: translateY(0);
}

.tb-team-card:hover .tb-team-social-icon:nth-child(1),
.tb-team-card:focus-within .tb-team-social-icon:nth-child(1) { transition-delay: .16s; }
.tb-team-card:hover .tb-team-social-icon:nth-child(2),
.tb-team-card:focus-within .tb-team-social-icon:nth-child(2) { transition-delay: .08s; }
.tb-team-card:hover .tb-team-social-icon:nth-child(3),
.tb-team-card:focus-within .tb-team-social-icon:nth-child(3) { transition-delay: 0s; }

.tb-team-social-icon:last-child {
    background: #d7f23d;
    color: #101009;
}

.tb-team-info {
    padding: 20px 22px 24px;
}

.tb-team-name {
    color: #f3f3f1;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 4px;
}

.tb-team-role {
    color: #9c9c98;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1100px) {
    .tb-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tb-team-title { font-size: 32px; }
}

@media (max-width: 767px) {
    .tb-team-section { padding: 48px 20px 56px; }
    .tb-team-grid { grid-template-columns: 1fr; }
    .tb-team-title { font-size: 28px; }
    .tb-team-header { flex-direction: column; align-items: flex-start; }
    .tb-team-header-right { gap: 18px; }
}

@media (hover: none) {
    .tb-team-share-toggle { display: none; }
    .tb-team-social-icon { opacity: 1; transform: none; }
}
