/* css/poligraf.css */

/* ─── HERO ─── */
.pol-hero { background: var(--surface); padding: 40px 0; }

.pol-hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
}

.pol-hero__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.pol-hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 28px;
}

.pol-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── КАРТХОЛДЕРЫ ─── */
.pol-holders { padding: 0 0 40px; }

.pol-holders__head {
  margin-bottom: 20px;
}

.pol-holders__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
}

.pol-holders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pol-holder {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pol-holder__img-wrap {
  width: 100%;
  height: 300px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.pol-holder__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.pol-holder__body {
  padding: 28px 32px 32px;
  flex: 1;
}

.pol-holder__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.pol-holder__specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pol-holder__spec {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.pol-holder__spec:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pol-holder__spec-name {
  color: var(--muted);
  flex-shrink: 0;
}

.pol-holder__spec-val {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 700px) {
  .pol-holders__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .pol-holder__body { padding: 20px 20px 24px; }
}
