.page-hero {
    background: linear-gradient(135deg, #0b2c3d, #14597a);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
}
.page-hero p {
    font-size: 18px;
    opacity: .85;
}

.team-section {
    padding: 60px 20px;
    background: #f5f7fa;
}

.team-wrapper {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transition: .25s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    max-width: 420px;        /* MUHIM: haddan tashqari cho‘zilmasin */
    height: 260px;

    object-fit: cover;
    object-position: center 22%; /* bosh qirqilmasin */

    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,.15);

    image-rendering: auto;
}


.team-name {
    margin-top: 18px;
    font-size: 22px;
    font-weight: 800;
}

.team-pos {
    color: #2b71ff;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-meta {
    font-size: 14px;
    margin-bottom: 5px;
}

.team-meta i {
    color: #0b2c3d;
    width: 18px;
}

.more-btn {
    margin-top: 12px;
    background: #0b2c3d;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.more-btn:hover {
    background: #14597a;
}

.team-details {
    margin-top: 18px;
    background: #eef3f7;
    padding: 15px;
    border-radius: 12px;
    text-align: left;
    display: none;
}

.team-details h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}
