/* ═══════════════════════════════════════════
   HOME — Clandestino
   Limpio. Sin legacy. Sin parches.
═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --fp-red:     #cc0000;
  --fp-black:   #080808;
  --fp-surface: #111111;
  --fp-border:  rgba(255,255,255,0.08);
  --fp-white:   #ffffff;
  --fp-muted:   rgba(255,255,255,0.45);
  --fp-max:     1320px;
  --fp-gap:     clamp(24px, 4vw, 64px);
}

.fp-red   { color: var(--fp-red); }
.fp-container {
  width: 100%;
  max-width: var(--fp-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ── BOTONES ── */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.fp-btn--primary {
  background: var(--fp-red);
  color: #fff;
  border-color: var(--fp-red);
}
.fp-btn--primary:hover { background: #aa0000; border-color: #aa0000; }
.fp-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.fp-btn--outline:hover { border-color: #fff; }
.fp-btn--ghost {
  background: transparent;
  color: var(--fp-muted);
  border-color: var(--fp-border);
}
.fp-btn--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.fp-btn--full { width: 100%; }
.fp-btn--sm { padding: 10px 18px; font-size: 0.72rem; }

/* ── LABEL / EYEBROW ── */
.fp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fp-muted);
  margin-bottom: 16px;
}
.fp-label__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fp-red);
  flex-shrink: 0;
}

/* ── SECTION HEADER ── */
.fp-section-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.fp-section-header__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fp-white);
  margin: 0;
}


/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.fp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--fp-black);
  overflow: hidden;
  padding-top: 64px;
}

.fp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fp-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, transparent 30%, black 100%);
}
.fp-hero__bg-vline {
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 2px;
  background: var(--fp-red);
}

.fp-hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: var(--fp-max);
  margin: 0 auto;
  padding: 80px clamp(20px, 5vw, 80px);
  min-height: calc(100svh - 64px);
}

.fp-hero__copy {
  flex: 0 0 auto;
  width: 46%;
  max-width: 560px;
}

.fp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fp-muted);
  margin: 0 0 28px;
}
.fp-hero__dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--fp-red);
  flex-shrink: 0;
}

.fp-hero__headline {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fp-white);
  margin: 0 0 28px;
}
.fp-hero__accent {
  display: block;
  font-style: normal;
  color: var(--fp-red);
}

.fp-hero__sub {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--fp-muted);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 36ch;
}

.fp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fp-hero__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.fp-hero__img {
  width: min(100%, 820px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
  animation: fp-float 5s ease-in-out infinite;
}
@keyframes fp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}


/* ════════════════════════════════════
   KIT
════════════════════════════════════ */
.fp-kit {
  background: var(--fp-black);
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--fp-border);
}

.fp-kit__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.fp-kit__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fp-kit__item {
  display: grid;
  grid-template-columns: 48px 160px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-kit__item:first-child { border-top: 1px solid var(--fp-border); }
.fp-kit__item-id {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--fp-red);
  font-family: monospace;
}
.fp-kit__item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fp-kit__item-info strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fp-white);
}
.fp-kit__item-info span {
  font-size: 0.72rem;
  color: var(--fp-muted);
  letter-spacing: 0.05em;
}
.fp-kit__item-desc {
  font-size: 0.82rem;
  color: var(--fp-muted);
  margin: 0;
  line-height: 1.5;
}

.fp-kit__cta-box {
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.fp-kit__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-red);
  border: 1px solid var(--fp-red);
  padding: 4px 10px;
  width: fit-content;
}
.fp-kit__cta-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fp-white);
  margin: 0;
  line-height: 1.3;
}
.fp-kit__cta-sub {
  font-size: 0.8rem;
  color: var(--fp-muted);
  margin: 0;
  line-height: 1.5;
}.fp-kit__cta-img {
  margin: 0 0 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255,255,255,0.08);
}

.fp-kit__cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ════════════════════════════════════
   SEEDS
════════════════════════════════════ */
.fp-seeds {
  background: #0d0d0d;
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--fp-border);
}

.fp-seeds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.fp-seed-card {
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s;
}
.fp-seed-card:hover { border-color: rgba(255,255,255,0.2); }

.fp-seed-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
}
.fp-seed-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fp-seed-card:hover .fp-seed-card__img img { transform: scale(1.04); }
.fp-seed-card__img {
  display: block;
  cursor: pointer;
}
.fp-seed-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.fp-seed-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fp-white);
  margin: 0;
}
.fp-seed-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-red);
  margin: 0;
}
.fp-seed-card__ctas {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.fp-seeds__empty {
  text-align: center;
  padding: 48px;
  color: var(--fp-muted);
}

.fp-seeds__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fp-seeds__note {
  font-size: 0.75rem;
  color: var(--fp-muted);
  margin: 0;
  letter-spacing: 0.05em;
}


/* ════════════════════════════════════
   FERTIS
════════════════════════════════════ */
.fp-fertis {
  background: var(--fp-black);
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--fp-border);
}

.fp-fertis__grid,
.fp-fertis__fallback {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.fp-ferti-card {
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  transition: border-color 0.2s;
}
.fp-ferti-card:hover { border-color: rgba(255,255,255,0.2); }

.fp-ferti-card__top { display: flex; align-items: center; }
.fp-ferti-card__id {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--fp-red);
  font-family: monospace;
  line-height: 1;
}

.fp-ferti-card__body { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.fp-ferti-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fp-white);
  margin: 0;
}
.fp-ferti-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-red);
  margin: 0;
}
.fp-ferti-card__desc {
  font-size: 0.78rem;
  color: var(--fp-muted);
  margin: 0;
  line-height: 1.5;
}

.fp-ferti-card__ctas {
  display: flex;
  gap: 8px;
  margin-top: auto;
}


/* ════════════════════════════════════
   BLOQUE TÉCNICO
════════════════════════════════════ */
.fp-tech {
  background: #0d0d0d;
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid var(--fp-border);
}

.fp-tech__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.fp-tech__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fp-white);
  margin: 0;
}

.fp-tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.fp-tech__item { display: flex; flex-direction: column; gap: 8px; }
.fp-tech__num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fp-red);
  letter-spacing: 0.1em;
}
.fp-tech__item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fp-white);
  margin: 0;
}
.fp-tech__item-desc {
  font-size: 0.8rem;
  color: var(--fp-muted);
  margin: 0;
  line-height: 1.6;
}


/* ════════════════════════════════════
   CIERRE
════════════════════════════════════ */
.fp-close {
  background: var(--fp-black);
  border-top: 1px solid var(--fp-border);
  overflow: hidden;
}

.fp-close__ticker {
  border-bottom: 1px solid var(--fp-border);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.fp-close__ticker-track {
  display: inline-flex;
  animation: fp-ticker 28s linear infinite;
}
.fp-close__ticker-track span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fp-muted);
  padding-right: 48px;
}
@keyframes fp-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fp-close__content {
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.fp-close__phrase {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fp-white);
  margin: 0;
}
.fp-close__phrase strong { color: var(--fp-red); }

.fp-close__ctas {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .fp-kit__layout { grid-template-columns: 1fr; }
  .fp-kit__cta-box { position: static; }
  .fp-seeds__grid { grid-template-columns: repeat(2, 1fr); }
  .fp-tech__inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .fp-hero__layout { flex-direction: column; min-height: auto; padding: 60px 24px 40px; }
  .fp-hero__copy { width: 100%; max-width: 100%; }
  .fp-hero__media { width: 100%; justify-content: center; }
  .fp-hero__img { width: min(100%, 560px); animation: none; }
  .fp-close__content { flex-direction: column; text-align: center; }
  .fp-close__ctas { justify-content: center; }
}

@media (max-width: 640px) {
  .fp-kit__item { grid-template-columns: 40px 1fr; }
  .fp-kit__item-desc { display: none; }
  .fp-seeds__grid { grid-template-columns: 1fr; }
  .fp-tech__grid { grid-template-columns: 1fr; }
  .fp-hero__ctas { flex-direction: column; }
  .fp-hero__ctas .fp-btn { width: 100%; }
}.fp-seed-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-seed-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fp-seed-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: #111;
}@media (max-width: 768px) {
  .fp-seed-card__img {
    aspect-ratio: 1 / 0.8;
  }
}.fp-kit__item-id {
  font-size: 18px;
  font-weight: 700;
}/* ════════════════════════════════════
   SEEDS ARCHIVE — categoría semillas
════════════════════════════════════ */

.seeds-archive__header {
    padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 5vw, 64px);
    background: var(--fp-black);
    border-bottom: 1px solid var(--fp-border);
}

.seeds-archive__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--fp-white);
    margin: 0 0 16px;
}

.seeds-archive__sub {
    font-size: 1rem;
    color: var(--fp-muted);
    margin: 0;
}

.seeds-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 80px);
}

.seeds-archive__empty {
    color: var(--fp-muted);
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 0;
}

.seed-card {
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.2s;
}

.seed-card:hover { border-color: rgba(255,255,255,0.2); }

.seed-card__img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #1a1a1a;
}

.seed-card__img--empty {
    background: #111;
}

.seed-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.seed-card:hover .seed-card__img img { transform: scale(1.04); }

.seed-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.seed-card__meta { display: flex; align-items: center; gap: 8px; }

.seed-card__badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fp-red);
    border: 1px solid var(--fp-red);
    padding: 3px 8px;
}

.seed-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fp-white);
    margin: 0;
    line-height: 1.3;
}

.seed-card__packs {
  display: flex;
  gap: 8px;

  border: 1px solid rgba(143, 17, 17, 0.6);
  padding: 8px;
  border-radius: 6px;

  background: rgba(143, 17, 17, 0.04);
}

.seed-pack-btn {
    background: transparent;
    border: 1px solid var(--fp-border);
    color: var(--fp-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    text-transform: uppercase;
}
.seed-card__packs:hover {
  border-color: #8f1111;
  background: rgba(143, 17, 17, 0.08);
}
.seed-pack-btn:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--fp-white);
}

.seed-pack-btn.is-active {
  background: #8f1111;
  border-color: #8f1111;
  color: #fff;
}

.seed-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fp-red);
    margin: 0;
}

.seed-card__ctas {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

@media (max-width: 640px) {
    .seeds-archive__grid {
        grid-template-columns: 1fr;
    }
}.seed-card__packs {
  position: relative;
}

.seed-card__packs::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #8f1111;
}.fp-seeds__filters {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}

.fp-seeds__filter {
  background: transparent;
  border: 1px solid var(--fp-border);
  color: var(--fp-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  line-height: 1;
}

.fp-seeds__filter:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
}

.fp-seeds__filter.is-active {
  background: var(--fp-red);
  border-color: var(--fp-red);
  color: #fff;
}.fp-seed-card__packs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--fp-border);
  width: fit-content;
}

.fp-pack-btn {
  background: transparent;
  border: none;
  color: var(--fp-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
  position: relative;
}

.fp-pack-btn:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}

.fp-pack-btn.is-active {
  background: var(--fp-red);
  color: #fff;
}/* ════════════════════════════════════
   PRODUCTOS RELACIONADOS
════════════════════════════════════ */

.cl-related {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--fp-border);
  background: var(--fp-black);
}

.cl-related__header {
  margin-bottom: 28px;
}

.cl-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.cl-related-card {
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s;
}

.cl-related-card:hover {
  border-color: rgba(255,255,255,0.2);
}

.cl-related-card__img {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}

.cl-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cl-related-card:hover .cl-related-card__img img {
  transform: scale(1.04);
}

.cl-related-card__body {
  padding: 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cl-related-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.cl-related-card__name a {
  color: var(--fp-white);
  text-decoration: none;
  transition: color 0.15s;
}

.cl-related-card__name a:hover {
  color: var(--fp-red);
}

.cl-related-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fp-red);
  margin: 0;
}

.cl-related-card__price .woocommerce-Price-amount {
  color: var(--fp-red);
}

.cl-related-card__cta {
  padding: 12px 16px 16px;
}

.cl-related-card__cta .fp-btn {
  width: 100%;
}
.fp-seeds__subhead {
  max-width: var(--fp-max);
  margin: 0 auto 28px;
  padding: 0 clamp(20px, 5vw, 64px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(#8f1111);
}
@media (max-width: 640px) {
  .cl-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}/* SOCIAL PROOF */

.cl-proof{
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);

    background:#070707;
}

.cl-proof__inner{
    width:min(1320px,calc(100% - 64px));
    margin:0 auto;

    padding:26px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.cl-proof__headline{
    margin:0;

    color:#fff;

    font-size:.9rem;
    font-weight:600;
    letter-spacing:.02em;
}

.cl-proof__sub{
    margin:0;

    color:rgba(255,255,255,.38);

    font-size:.72rem;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;
}

@media (max-width:768px){

    .cl-proof__inner{
        flex-direction:column;
        align-items:flex-start;

        padding:22px 0;
    }

    .cl-proof__headline{
        font-size:.82rem;
        line-height:1.6;
    }

}