.sfp-works-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* ── Hide all Google Translate injected UI ───────────────────────────────── */
/* Banner frame ("Translated by Google" bar) */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
    display: none !important;
}

/* Spinner is removed via JS in class-rtl-support.php (class names are fully dynamic) */
.goog-te-spinner-pos {
    display: none !important;
}

/* Tooltip/balloon popups */
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip-content,
.goog-te-balloon-frame {
    display: none !important;
}

/* Google Translate shifts body.top down by banner height; undo that */
body {
    top: 0 !important;
}
/* ─────────────────────────────────────────────────────────────────────────── */

.sfp-work-item {
    width: calc(33.333% - 20px);
    box-sizing: border-box;
}

.sfp-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sfp-team-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sfp-team-item {
    text-align: center;
}

.sfp-team-image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
