#gk-studios-block {
  --gk-vert: #41b883;
  --gk-ink: #161616;
  --gk-accent: var(--gk-vert);
  --gk-accent-ink: #fff;
  --gk-accent-soft: #c4f5e2;
  --gk-accent-soft-2: #a1e7cb;
  --gk-badge-ink: #20351a;
  --gk-radius: 16px;
  --gk-radius-sm: 8px;
  --gk-font: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --gk-font-body: "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gk-maxw: 1500px;
  font-family: var(--gk-font);
  color: var(--gk-ink);
}

#gk-studios-block *,
#gk-studios-block *::before,
#gk-studios-block *::after {
  box-sizing: border-box;
}

#gk-studios-block img {
  display: block;
  max-width: 100%;
}

#gk-studios-block .gk-models-section {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 83px);
}

#gk-studios-block .gk-models-section__inner {
  max-width: var(--gk-maxw);
  margin-inline: auto;
}

#gk-studios-block .gk-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

#gk-studios-block .gk-section-head__title {
  color: var(--gk-accent);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 5.625rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

#gk-studios-block .gk-section-head__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--gk-accent);
  font-weight: 700;
  font-size: 16px;
}

#gk-studios-block .gk-section-head__cta-icon {
  flex: 0 0 auto;
  width: clamp(48px, 4vw, 60px);
  height: clamp(48px, 4vw, 60px);
  display: grid;
  place-items: center;
  border-radius: var(--gk-radius-sm);
  background: var(--gk-accent);
  color: var(--gk-accent-ink, #fff);
}

#gk-studios-block .gk-section-head__cta-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (hover: hover) {
  #gk-studios-block .gk-section-head__cta:hover .gk-section-head__cta-icon svg {
    transform: translate(3px, -3px);
  }
}

#gk-studios-block .gk-filters {
  padding-bottom: clamp(20px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#gk-studios-block .gk-filters__group {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 4px 18px;
  align-items: start;
}

#gk-studios-block .gk-filters__label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a9a9a;
  padding-top: 9px;
}

#gk-studios-block .gk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#gk-studios-block .gk-chip {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid #e2e2dc;
  background: transparent;
  color: #4a4a4a;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  #gk-studios-block .gk-chip:hover {
    border-color: var(--gk-accent);
    background: #fcfcfa;
  }
}

#gk-studios-block .gk-chip.is-active {
  background: var(--gk-accent);
  border-color: var(--gk-accent);
  color: var(--gk-accent-ink, #fff);
}

#gk-studios-block .gk-chip:focus-visible {
  outline: 2px solid var(--gk-accent);
  outline-offset: 2px;
}

#gk-studios-block .gk-filters__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2px;
}

#gk-studios-block .gk-filters__reset {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #6b6b6b;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px;
}

#gk-studios-block .gk-filters__reset:hover {
  color: var(--gk-accent);
}

#gk-studios-block .gk-filters__reset[hidden] {
  display: none;
}

#gk-studios-block .gk-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

#gk-studios-block .gk-models__empty {
  display: none;
  padding: 48px 0;
  text-align: center;
  color: #6b6b6b;
  font-size: 17px;
}

#gk-studios-block .gk-models__empty.is-visible {
  display: block;
}

#gk-studios-block .gk-model {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f0efe9;
  border-radius: var(--gk-radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(180, 180, 180, 0.18);
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}

#gk-studios-block .gk-model.is-hidden {
  display: none;
}

#gk-studios-block .gk-model__media {
  position: relative;
  aspect-ratio: 550 / 500;
  overflow: hidden;
  flex: 0 0 auto;
}

#gk-studios-block .gk-model__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fafafa;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#gk-studios-block .gk-model__badge {
  position: absolute;
  left: clamp(16px, 1.5vw, 24px);
  bottom: clamp(16px, 1.5vw, 24px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gk-accent-soft, #eee);
  padding: 8px 14px 8px 8px;
  border-radius: var(--gk-radius-sm);
}

#gk-studios-block .gk-model__badge-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--gk-accent-soft-2, #ddd);
  color: var(--gk-badge-ink, #222);
}

#gk-studios-block .gk-model__badge-icon svg {
  width: 14px;
  height: 14px;
}

#gk-studios-block .gk-model__badge-text {
  font-family: var(--gk-font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--gk-badge-ink, #222);
}

#gk-studios-block .gk-model__badge-text sup {
  font-size: 0.66em;
}

#gk-studios-block .gk-model__content {
  font-family: var(--gk-font-body);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  flex: 1 1 auto;
}

#gk-studios-block .gk-model__code {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin: 0;
}

#gk-studios-block .gk-model__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: #0a0a0a;
  margin: 6px 0 0;
}

#gk-studios-block .gk-model__specs {
  list-style: none;
  margin: 0;
  padding: 0;
}

#gk-studios-block .gk-model__spec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #f4f4f4;
  font-size: 15px;
  color: #4a4a4a;
}

#gk-studios-block .gk-model__spec b {
  font-weight: 800;
}

#gk-studios-block .gk-model__spec-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #b4b4b4;
}

#gk-studios-block .gk-model__spec-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

#gk-studios-block .gk-model__cta {
  display: block;
  margin-top: auto;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: #fff !important;
  background-color: #41b883;
  border: 2px solid #41b883;
  border-radius: 8px;
  padding: 17px 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#gk-studios-block .gk-model__cta:hover {
  background-color: #3caf7c;
  border-color: #3caf7c;
  color: #fff !important;
}

@media (hover: hover) {
  #gk-studios-block .gk-model:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  }

  #gk-studios-block .gk-model:hover .gk-model__media img {
    transform: scale(1.05);
  }
}

@media (max-width: 1024px) {
  #gk-studios-block .gk-models {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  #gk-studios-block .gk-models {
    grid-template-columns: 1fr;
  }

  #gk-studios-block .gk-filters__group {
    grid-template-columns: 1fr;
  }

  #gk-studios-block .gk-filters__label {
    padding-top: 0;
  }
}
