/* ============================================================
   MERIDA PARK — ÜRETİM & KALİTE (uretim.html)
   Page-specific styling. Only the QC block and the small
   certificate-card grid introduce new classes; everything else
   on the page reuses styles.css / pages.css components.
   Uses ONLY existing design tokens — no new colors/fonts.
   ============================================================ */

/* ---------------- QUALITY CONTROL (on section--bone) ---------------- */
.qc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.qc-item {
  background: var(--paper);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 248px;
  position: relative;
  transition: background 0.18s ease;
}
.qc-item:hover { background: #fbfaf5; }
.qc-item::before {
  content: "";
  position: absolute;
  left: 30px; top: 0;
  width: 28px; height: 2px;
  background: var(--terracotta);
}
.qc-item__num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.qc-item__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.qc-item__title {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 4px 0 0;
}
.qc-item__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ---------------- CERTIFICATE CARDS (on section--ink) ---------------- */
.cert-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.cert-card {
  padding: 28px 26px 26px;
  border: 1px solid rgba(246,244,238,0.18);
  border-radius: 16px;
  background: rgba(246,244,238,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cert-card:hover {
  border-color: rgba(246,244,238,0.34);
  background: rgba(246,244,238,0.07);
}
.cert-card__code {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
}
.cert-card__title {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--bone);
  margin: 0;
}
.cert-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(246,244,238,0.6);
  margin: auto 0 0;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
  .qc { grid-template-columns: 1fr 1fr; }
  .cert-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .qc { grid-template-columns: 1fr; }
  .qc-item { min-height: 0; }
  .cert-cards { grid-template-columns: 1fr; gap: 14px; }
  .cert-card { min-height: 0; }
}
