/* ══════════════════════════════════════
   O FIRMIE — Wariant B + Galeria (paski 3+3+3)
   Plik: /img/cms/cms-about.css
   Ładowany tylko na stronie CMS id=1
   ══════════════════════════════════════ */

.cms-about {
  max-width: 860px;
  margin: 0 auto;
  padding: 10px 20px 40px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Nagłówki */
.cms-about h1 {
  font-size: 28px;
  font-weight: 600;
  color: #2a2520;
  text-align: center;
  margin-bottom: 6px;
}

.cms-about .about-subtitle {
  text-align: center;
  font-size: 12px;
  color: #c9a25d;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}

.cms-about h2 {
  font-size: 20px;
  font-weight: 600;
  color: #2a2520;
  margin: 32px 0 16px;
}

.cms-about h3 {
  font-size: 17px;
  font-weight: 600;
  color: #2a2520;
  margin: 28px 0 12px;
}

/* Tekst */
.cms-about p,
.cms-about .about-list {
  font-size: 15px;
  line-height: 1.9;
  color: #5a5249;
  margin-bottom: 16px;
  font-weight: 300;
}

.cms-about .about-lead::first-letter {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  float: left;
  line-height: 0.85;
  margin: 5px 10px 0 0;
  color: #c9a25d;
  font-weight: 600;
}

.cms-about p strong {
  font-weight: 500;
  color: #3a342c;
}

.cms-about a {
  color: #c9a25d;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 93, 0.3);
  transition: border-color 0.3s;
}

.cms-about a:hover {
  border-bottom-color: #c9a25d;
}

/* Lista ofertowa */
.cms-about .about-list {
  padding-left: 0;
  margin: 16px 0;
  list-style: none;
}

.cms-about .about-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5249;
  font-weight: 300;
}

.cms-about .about-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: #c9a25d;
  font-weight: 500;
}

/* Rozdzielnik */
.cms-about .about-divider {
  text-align: center;
  margin: 28px 0;
  color: #c9a25d;
  font-size: 12px;
  letter-spacing: 8px;
}

/* ── Galeria — paski po 3 zdjęcia ── */
.cms-about .about-gallery-label {
  text-align: center;
  font-size: 11px;
  color: #b5aa9c;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 28px 0 10px;
  font-weight: 500;
}

.cms-about .about-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.cms-about .about-gallery-strip .ag-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.cms-about .about-gallery-strip .ag-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.cms-about .about-gallery-strip .ag-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 22, 17, 0.65), transparent);
  padding: 24px 12px 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Marki */
.cms-about .about-brands {
  text-align: center;
  font-size: 14px;
  color: #7a7064;
  line-height: 1.8;
  padding: 18px 0;
  border-top: 1px solid #e8e0d3;
  border-bottom: 1px solid #e8e0d3;
  margin: 24px 0;
}

.cms-about .about-brands strong {
  color: #2a2520;
  font-weight: 600;
}

/* Kontakt */
.cms-about .about-contact {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: #5a5249;
}

.cms-about .about-contact strong {
  font-size: 15px;
  color: #2a2520;
  font-weight: 600;
}

.cms-about .about-contact a {
  border-bottom: none;
}

.cms-about .about-contact a:hover {
  text-decoration: underline;
}

/* Mapa Google */
.cms-about .about-map {
  margin-top: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e0d3;
  aspect-ratio: 16 / 7;
  max-width: 100%;
}

.cms-about .about-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.8) contrast(1.05);
  max-width: 100%;
}

.cms-about .about-map-hint {
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
  color: #b5aa9c;
  letter-spacing: 0.5px;
}

.cms-about .about-map-hint a {
  color: #c9a25d;
  border-bottom: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 700px) {
  .cms-about .about-gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cms-about .about-map {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .cms-about h1 {
    font-size: 24px;
  }

  .cms-about h2 {
    font-size: 18px;
  }

  .cms-about .about-lead::first-letter {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .cms-about .about-gallery-strip {
    grid-template-columns: 1fr;
  }

  .cms-about .about-map {
    aspect-ratio: 1 / 1;
  }
}