/* =============================================================================
   HOMEPAGE OPERATOR GRID  [lfgc_homepage_operators]  — Figma node 2316:15652
   ============================================================================= */

.lfgc-hp-ops {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(var(--lfgc-hp-ops-cols, 4), 1fr);
}

.lfgc-hp-ops__link {
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  text-decoration: none;
}

.lfgc-hp-ops__image-wrap {
  display: block;
  height: 407px;
  overflow: hidden;
  transition: height 0.35s ease;
}

.lfgc-hp-ops__image-wrap img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.lfgc-hp-ops__image-placeholder {
  background: var(--lfgc-hp-ops-placeholder);
  display: block;
  height: 100%;
  width: 100%;
}

.lfgc-hp-ops__logo-wrap {
  background: var(--lfgc-hp-ops-white);
  height: 92px;
  left: 20px;
  overflow: hidden;
  position: absolute;
  top: -14px;
  width: 92px;
}

.lfgc-hp-ops__logo-wrap img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.lfgc-hp-ops__info {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.lfgc-hp-ops__name-row {
  align-items: center;
  display: flex;
  gap: 19px;
}

.lfgc-hp-ops__name {
  color: var(--lfgc-hp-ops-charcoal);
  flex: 1;
  font-family: 'Area_Extended_Medium', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.07;
  margin: 0;
}

.lfgc-hp-ops__arrow {
  flex-shrink: 0;
  height: 42px;
  opacity: 0;
  transition: opacity 0.35s ease;
  width: 42px;
}

.lfgc-hp-ops__arrow svg {
  display: block;
  height: 100%;
  width: 100%;
}

.lfgc-hp-ops__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.lfgc-hp-ops__cat {
  border: 1px solid var(--lfgc-hp-ops-border);
  border-radius: 89px;
  font-family: 'Area_Extended_SemiBold', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.53;
  padding: 6px 10px;
  white-space: nowrap;
}

.lfgc-hp-ops__cat--primary {
  color: var(--lfgc-hp-ops-charcoal);
}

.lfgc-hp-ops__cat--secondary {
  color: var(--lfgc-hp-ops-magenta);
}

.lfgc-hp-ops__card:hover .lfgc-hp-ops__image-wrap {
  height: 446px;
}

.lfgc-hp-ops__card:hover .lfgc-hp-ops__image-wrap img {
  transform: scale(1.06);
}

.lfgc-hp-ops__card:hover .lfgc-hp-ops__arrow {
  color: var(--lfgc-hp-ops-magenta);
  opacity: 1;
}

@media (max-width: 980px) {
  .lfgc-hp-ops {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lfgc-hp-ops {
    grid-template-columns: 1fr;
  }

  .lfgc-hp-ops__image-wrap {
    height: 240px;
  }
}
