/* Attorneys page styles */
.team-section {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
}

.team-section .section-title {
    font-size: 56px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: #111;
}

.team-underline {
    width: 80px;
    height: 6px;
    background: #f36b21;
    margin: 18px 0 36px;
    border-radius: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: start;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.team-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.team-name {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.team-title {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

.team-phone {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

@media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-photo img { height: 330px; }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; gap: 30px; }
    .team-photo img { height: 280px; }
    .team-section { padding: 30px 16px; }
    .team-section .section-title { font-size: 36px; text-align: left; }
}
