/* css/tri-vida.css */

/* ─── SECTION ─── */
.pvt-section {
  padding: 0 0 40px;
}

.pvt-section--first {
  padding-top: 40px;
}

/* ─── CARD ─── */
.pvt-card {
  background: var(--white);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-start;
}

/* ─── BODY ─── */
.pvt-body {
  position: relative;
  z-index: 1;
  padding: 52px 56px;
  max-width: 58%;
  display: flex;
  flex-direction: column;
}

/* ─── BADGE ─── */
.pvt-badge {
  display: inline-block;
  background: var(--surface);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  align-self: flex-start;
}

.pvt-badge--premium {
  background: var(--red-dim);
  color: var(--red);
}

/* ─── TITLE ─── */
.pvt-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}

.pvt-title__type {
  color: var(--red);
}

/* ─── DESC ─── */
.pvt-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ─── PROS ─── */
.pvt-pros {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pvt-pros li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.pvt-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ─── META CHIPS ─── */
.pvt-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pvt-meta__chip {
  display: inline-block;
  background: var(--surface);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* ─── BUTTON ─── */
.pvt-body .btn {
  padding: 10px 22px;
  font-size: 14px;
  align-self: flex-start;
}

/* ─── IMAGE ─── */
.pvt-img-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 24px 24px 24px 0;
}

.pvt-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .pvt-body {
    padding: 36px 32px;
    max-width: 64%;
  }

  .pvt-img-wrap {
    width: 38%;
    padding: 16px 16px 16px 0;
  }
}

@media (max-width: 680px) {
  .pvt-card {
    flex-direction: column;
    min-height: auto;
  }

  .pvt-body {
    max-width: 100%;
    padding: 32px 28px;
  }

  .pvt-img-wrap {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 180px;
    padding: 16px 24px;
    justify-content: center;
  }

  .pvt-img {
    max-height: 100%;
  }
}

@media (max-width: 560px) {
  .pvt-section--first {
    padding-top: 24px;
  }

  .pvt-body {
    padding: 28px 24px;
  }

  .pvt-body .btn {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
}
