/* ==========================================================================
   SED Mühendislik — kurumsal site stil dosyası
   ========================================================================== */

:root {
  --bg:        #f5f5f2;
  --surface:   #ffffff;
  --ink:       #15171a;
  --ink-soft:  #5c6165;
  --muted:     #6b7075;
  --line:      #e2e2dd;
  --line-2:    #e6e6e1;
  --red:       #d8232a;
  --red-light: #ff4c54;
  --red-pale:  #ff5a61;
  --dark:      #15171a;
  --on-dark:   #c9cbc7;
  --on-dark-2: #b9bbb7;
  --on-dark-3: #a2a8a3;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --wrap:  1320px;
  --pad-x: clamp(18px, 5vw, 40px);
}

/* --- temel ---------------------------------------------------------------- */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { text-wrap: pretty; }
img { max-width: 100%; }

input::placeholder,
textarea::placeholder { color: #6f7570; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Bölüm başlığı üstündeki küçük monospace etiket */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--red);
  text-transform: uppercase;
}
.eyebrow--light { color: var(--red-pale); }

.section-title {
  margin-top: 20px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.04;
  font-weight: 800;
  text-transform: uppercase;
}

/* Hücreler arası 1px çizgiyi grid gap + arka planla kuran ızgara */
.grid-lined {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.grid-lined > * { background: var(--surface); }

/* --- butonlar -------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: 2px;
  white-space: nowrap;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: #fff; color: var(--ink); }

.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--red); color: #fff; }

.btn--ghost { border-color: rgba(255, 255, 255, 0.32); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); }

.btn--sm { padding: 16px 26px; }

/* --- başlık / navigasyon --------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 245, 242, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 40px; width: auto; display: block; }

/* Sabit başlığın kapladığı alanı telafi eden boşluk */
.header-spacer { height: 72px; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 14px;
  font-weight: 500;
}
.nav a { color: #4b4f53; white-space: nowrap; }
.nav a:hover { color: var(--red); }

.nav__cta {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  font-size: 13.5px;
  border-radius: 2px;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--red); color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid #d9d9d3;
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span { display: block; height: 2px; background: var(--ink); }

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 10px var(--pad-x) 22px;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu__cta {
  margin-top: 18px;
  background: var(--red);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 16px !important;
  text-align: center;
  border-radius: 2px;
  border-bottom: 0 !important;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
}

/* --- hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero__bg--soft { opacity: 0.38; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(21,23,26,0.92) 0%, rgba(21,23,26,0.6) 55%, rgba(21,23,26,0.25) 100%);
}
.hero__scrim--deep {
  background: linear-gradient(100deg, rgba(21,23,26,0.94) 0%, rgba(21,23,26,0.62) 60%, rgba(21,23,26,0.3) 100%);
}
.hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) var(--pad-x) clamp(56px, 9vw, 112px);
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--red-pale);
  text-transform: uppercase;
}
.hero__kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
}
.hero__title {
  margin-top: 30px;
  max-width: 900px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
.hero__title em { color: var(--red-light); font-style: normal; }
.hero__lede {
  margin-top: 30px;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--on-dark);
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* İç sayfa hero varyantı */
.page-hero .hero__inner {
  padding: clamp(32px, 6vw, 64px) var(--pad-x) clamp(56px, 8vw, 96px);
}
.page-hero__title {
  margin-top: 22px;
  max-width: 940px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
.page-hero__lede {
  margin-top: 28px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.62;
  color: var(--on-dark);
}
.page-hero__label { margin-top: 56px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--on-dark-3);
  text-transform: uppercase;
}
.breadcrumb a { color: var(--on-dark-3); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__current { color: var(--red-pale); }

/* --- öne çıkan sayısal şerit ----------------------------------------------- */

.strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.strip__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
}
.strip__item {
  background: var(--surface);
  padding: clamp(28px, 3.8vw, 38px) clamp(20px, 3vw, 28px);
}
/* Şeridin ilk/son hücresini dış kenardan hizalar */
.strip__item:first-child { padding-left: 0; }
.strip__item:last-child { padding-right: 0; }

.strip__num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}
.strip__title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
}
.strip__text {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* --- bölümler -------------------------------------------------------------- */

.section { background: var(--bg); }
.section--white {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--dark { background: var(--dark); }
.section--bordered { border-bottom: 1px solid var(--line); }

.section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) var(--pad-x);
}
.section__inner--tight { padding: clamp(52px, 8vw, 88px) var(--pad-x); }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.section__head h2 {
  margin-top: 20px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  font-weight: 800;
  text-transform: uppercase;
}
.section__head p {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
  margin: 0;
}

/* --- hizmet kartları ------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: var(--ink); }

.card__media {
  height: clamp(200px, 26vw, 280px);
  overflow: hidden;
  position: relative;
  background: #e8e8e3;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 7px 11px;
}
.card__body {
  padding: clamp(24px, 3.4vw, 34px) clamp(24px, 3.4vw, 34px) clamp(28px, 3.8vw, 38px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 { font-size: 27px; font-weight: 700; line-height: 1.14; }
.card__body p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-soft);
}

.card__link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
}
.card__link:hover { color: var(--ink); }

/* --- adım ızgarası (01–04) -------------------------------------------------- */

.steps {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 52px;
}
.step { padding: clamp(26px, 3.6vw, 36px) clamp(22px, 3vw, 30px); }
.step__num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--line-2);
  line-height: 1;
}
.step h4 { margin-top: 20px; font-size: 20px; font-weight: 700; }
.step p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

/* Hizmet sayfalarındaki biraz daha küçük adım varyantı */
.steps--sm { margin-top: 44px; }
.steps--sm .step { padding: clamp(26px, 3.4vw, 34px) clamp(20px, 3vw, 28px); }
.steps--sm .step__num { font-size: 34px; }
.steps--sm .step h4 { margin-top: 18px; font-size: 19px; }
.steps--sm .step p { margin-top: 10px; font-size: 14.5px; }

/* --- kurumsal / iki sütun --------------------------------------------------- */

.split {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split__title {
  margin-top: 20px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.04;
  font-weight: 800;
  text-transform: uppercase;
}
.split p {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.split p + p { margin-top: 16px; }
.split .btn { margin-top: 32px; }

.split__media {
  position: relative;
  height: clamp(280px, 44vw, 520px);
  border-radius: 3px;
  overflow: hidden;
  background: #e8e8e3;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- faaliyet alanları ------------------------------------------------------ */

.tiles {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 44px;
}
.tile { padding: clamp(24px, 3.2vw, 32px) clamp(20px, 3vw, 28px); }
.tile h4 { font-size: 18px; font-weight: 700; }
.tile p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
}

/* --- koyu çağrı bandı ------------------------------------------------------- */

.cta-band {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 88px) var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
}
.cta-band--sm { padding: clamp(48px, 7vw, 80px) var(--pad-x); }

.cta-band h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
.cta-band--sm h2 {
  margin-top: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
}
.cta-band p {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.66;
  color: var(--on-dark-2);
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-band__actions--row {
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- hizmet detay: kapsam --------------------------------------------------- */

.detail {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 88px) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.detail h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
  font-weight: 800;
  text-transform: uppercase;
}
.detail > div > p {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.features {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 40px;
}
.features > div { padding: clamp(20px, 3vw, 26px); }
.features h4 { font-size: 17px; font-weight: 700; }
.features p {
  margin: 9px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

.detail__media {
  height: clamp(230px, 32vw, 360px);
  overflow: hidden;
  background: #e8e8e3;
  border-radius: 3px;
}
.detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Teknik bilgi tablosu */
.spec {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(22px, 3vw, 28px);
  margin-top: 24px;
  border-radius: 3px;
}
.spec__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.spec__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
  font-size: 15px;
}
.spec__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.spec__row:last-child { border-bottom: 0; padding-bottom: 0; }
.spec__row dt { color: var(--muted); }
.spec__row dd { margin: 0; font-weight: 500; text-align: right; }

/* --- sayfa alt gezinme (önceki / sonraki) ----------------------------------- */

.pager {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.pager__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) var(--pad-x);
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pager a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pager a.is-next { color: var(--red); }

/* --- iletişim -------------------------------------------------------------- */

.contact-strip__item {
  background: var(--surface);
  padding: clamp(30px, 4vw, 44px) clamp(20px, 3vw, 32px);
}
.contact-strip__item:first-child { padding-left: 0; }
.contact-strip__item:last-child { padding-right: 0; }

.contact-strip__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.contact-strip__value {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}
.contact-strip__value--sm { font-size: 20px; word-break: break-all; }
.contact-strip__value:hover { color: var(--red); }
.contact-strip__note { margin: 12px 0 0; font-size: 14.5px; color: var(--muted); }
.contact-strip__address {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}
.contact-strip__map-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
}

.contact-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 88px) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-grid h2 {
  margin-top: 20px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-grid__lede {
  margin-top: 24px;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.legal__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.legal p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink); }
.legal p.is-mono {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: #4b4f53;
}

/* --- form ------------------------------------------------------------------ */

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 3px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  border-radius: 2px;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; }

.form__submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 17px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 2px;
}
.form__submit:hover { background: var(--ink); }

.form__note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* --- harita ---------------------------------------------------------------- */

.map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
}
.map-head h2 {
  margin-top: 18px;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
}
.map-head a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
}
.map-frame {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  line-height: 0;
}
.map-frame iframe { border: 0; display: block; width: 100%; }

/* --- alt bilgi ------------------------------------------------------------- */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.site-footer__logo { height: 38px; width: auto; display: block; }
.site-footer__nav {
  display: flex;
  gap: 26px;
  font-size: 13.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.site-footer__nav a { color: var(--muted); }
.site-footer__nav a:hover { color: var(--red); }
.site-footer__legal {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  text-align: right;
}

/* Dar ekranda sağa yaslı metinler sola döner */
@media (max-width: 640px) {
  .site-footer__legal { text-align: left; }
  .strip__item:first-child,
  .strip__item:last-child,
  .contact-strip__item:first-child,
  .contact-strip__item:last-child {
    padding-left: clamp(20px, 3vw, 32px);
    padding-right: clamp(20px, 3vw, 32px);
  }
}
