/* Equipe Page Specific Styles */
.equipe-hero {
    height: 60vh;
    width: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../img/equipe-bg.jpg') no-repeat center bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.equipe-hero h1 {
    font-family: var(--font-head);
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.equipe-hero h1 span {
    color: var(--accent);
}

.team-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-label {
    text-align: center;
    margin-bottom: 60px;
}

.section-label .about-subtitle {
    justify-content: center;
    margin-bottom: 20px;
}

.section-label h2 {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
}

/* Partners Grid - Highlighted */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

/* Lawyers Grid - Standard */
.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 4px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-bottom-color: var(--accent);
}

.team-img-wrapper {
    position: relative;
    padding-top: 125%; /* Aspect ratio */
    overflow: hidden;
    background-color: #eee;
}

.team-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark);
    text-transform: uppercase;
}

.team-role {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipe-hero h1 {
        font-size: 48px;
    }
    .partners-grid, .lawyers-grid {
        grid-template-columns: 1fr;
    }
    .ds-container {
        padding: 0 25px;
    }
}
