@import url("style.css");

.technical-grid {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
    gap: 28px;
}

.technical-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    gap: 20px;
}

.technical-row.top {
    justify-content: center;
}

.technical-card {
    width: 260px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background-color: var(--card-bg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.technical-card .technical-card-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.technical-image {
    font-size: 48px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--secondary-bg);
}

.team-member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.member-role {
    font-weight: 700;
    color: #003d82;
}

.member-title {
    font-size: 13px;
    opacity: 0.85;
}

.member-info .experience {
    font-size: 13px;
    opacity: 0.9;
}

@media (max-width: 720px) {
    .technical-card {
        width: 90%;
        max-width: 360px;
    }

    .technical-row {
        gap: 14px;
    }
}
