@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

.ytlv-premium-editorial,
.ytlv-premium-editorial * {
  box-sizing: border-box;
}

.ytlv-premium-editorial {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #1f2933;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #fff;
}

.ytlv-premium-editorial .ytlv-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.ytlv-premium-editorial .ytlv-section-white {
  background: #fff;
}

.ytlv-premium-editorial .ytlv-section-warm {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 80, 80, 0.1), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 184, 92, 0.12), transparent 30%),
    linear-gradient(180deg, #fff7f3 0%, #fffaf7 52%, #fff 100%);
}

.ytlv-premium-editorial .ytlv-container {
  width: min(1320px, 100%);
  max-width: 100%;
  margin: 0 auto;
}

.ytlv-premium-editorial .ytlv-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ytlv-premium-editorial .ytlv-section-head h2 {
  margin: 0;
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.15;
  letter-spacing: 0;
  color: #171923;
  font-weight: 820;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytlv-premium-editorial .ytlv-section-head h2 span {
  display: inline;
  color: transparent;
  background: linear-gradient(135deg, #e62117 0%, #ff5a3d 42%, #ff9f43 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.ytlv-premium-editorial .ytlv-section-head p {
  margin: 14px auto 0;
  max-width: 680px;
  color: #667085;
  font-size: 1.02rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytlv-premium-editorial .ytlv-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ytlv-premium-editorial .ytlv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --ytlv-accent: #e62117;
  --ytlv-accent-2: #ff8a3d;
  --ytlv-soft: rgba(230, 33, 23, 0.1);

  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 247, 0.9));
  box-shadow: 0 18px 46px rgba(31, 41, 51, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  will-change: transform;
}

.ytlv-premium-editorial .ytlv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--ytlv-accent) 18%, transparent), transparent 34%);
  transition: opacity 0.28s ease;
}

.ytlv-premium-editorial .ytlv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--ytlv-accent), var(--ytlv-accent-2));
  opacity: 0.75;
}

.ytlv-premium-editorial .ytlv-card.is-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.ytlv-premium-editorial .ytlv-card:hover {
  border-color: color-mix(in srgb, var(--ytlv-accent) 38%, rgba(31, 41, 51, 0.12));
  box-shadow: 0 26px 70px rgba(31, 41, 51, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.ytlv-premium-editorial .ytlv-card:hover::before {
  opacity: 1;
}

.ytlv-premium-editorial .ytlv-card > * {
  position: relative;
  z-index: 1;
}

.ytlv-premium-editorial .ytlv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  margin: 0 0 20px;
  border-radius: 18px;
  color: var(--ytlv-accent);
  background: linear-gradient(145deg, #fff, var(--ytlv-soft));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.76), 0 14px 28px rgba(31, 41, 51, 0.08);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.ytlv-premium-editorial .ytlv-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

.ytlv-premium-editorial .ytlv-card:hover .ytlv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--ytlv-accent), var(--ytlv-accent-2));
  transform: translateY(-3px) scale(1.04) rotate(-3deg);
}

.ytlv-premium-editorial .ytlv-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 10px;
  color: #1f2933;
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: 0;
  font-weight: 760;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytlv-premium-editorial .ytlv-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ytlv-accent), var(--ytlv-accent-2));
  transition: width 0.28s ease;
}

.ytlv-premium-editorial .ytlv-card:hover h3::after {
  width: 86px;
}

.ytlv-premium-editorial .ytlv-card p {
  margin: 0;
  color: #5f6c7b;
  font-size: 0.96rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytlv-premium-editorial .ytlv-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--ytlv-accent);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.35;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytlv-premium-editorial .ytlv-card:hover .ytlv-cta {
  opacity: 1;
  transform: translateY(0);
}

.ytlv-premium-editorial .ytlv-grid-why .ytlv-card {
  transform-style: preserve-3d;
}

.ytlv-premium-editorial .ytlv-grid-why .ytlv-card:hover .ytlv-icon,
.ytlv-premium-editorial .ytlv-grid-why .ytlv-card:hover h3 {
  transform: translateZ(18px);
}

.ytlv-premium-editorial .ytlv-process {
  isolation: isolate;
}

.ytlv-premium-editorial .ytlv-process::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 4px;
  z-index: 0;
  color: color-mix(in srgb, var(--ytlv-accent) 12%, transparent);
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.ytlv-premium-editorial .ytlv-process:hover::before {
  opacity: 0.95;
  transform: translateY(-3px) scale(1.06);
}

.ytlv-premium-editorial .ytlv-step-text {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--ytlv-accent);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytlv-premium-editorial .ytlv-card:nth-child(1) { --ytlv-accent: #e62117; --ytlv-accent-2: #ff6b4a; --ytlv-soft: rgba(230, 33, 23, 0.1); }
.ytlv-premium-editorial .ytlv-card:nth-child(2) { --ytlv-accent: #d92d20; --ytlv-accent-2: #ff9f43; --ytlv-soft: rgba(217, 45, 32, 0.1); }
.ytlv-premium-editorial .ytlv-card:nth-child(3) { --ytlv-accent: #c2410c; --ytlv-accent-2: #f97316; --ytlv-soft: rgba(194, 65, 12, 0.1); }
.ytlv-premium-editorial .ytlv-card:nth-child(4) { --ytlv-accent: #be123c; --ytlv-accent-2: #fb7185; --ytlv-soft: rgba(190, 18, 60, 0.1); }
.ytlv-premium-editorial .ytlv-card:nth-child(5) { --ytlv-accent: #b45309; --ytlv-accent-2: #f59e0b; --ytlv-soft: rgba(180, 83, 9, 0.1); }
.ytlv-premium-editorial .ytlv-card:nth-child(6) { --ytlv-accent: #7c3aed; --ytlv-accent-2: #f43f5e; --ytlv-soft: rgba(124, 58, 237, 0.09); }
.ytlv-premium-editorial .ytlv-card:nth-child(7) { --ytlv-accent: #0f766e; --ytlv-accent-2: #14b8a6; --ytlv-soft: rgba(15, 118, 110, 0.1); }
.ytlv-premium-editorial .ytlv-card:nth-child(8) { --ytlv-accent: #2563eb; --ytlv-accent-2: #ef4444; --ytlv-soft: rgba(37, 99, 235, 0.09); }

@media (min-width: 1200px) {
  .ytlv-premium-editorial .ytlv-section {
    padding: 96px 32px;
  }

  .ytlv-premium-editorial .ytlv-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-top: 52px;
  }

  .ytlv-premium-editorial .ytlv-container {
    width: min(1320px, 100%);
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .ytlv-premium-editorial .ytlv-section {
    padding: 84px 28px;
  }

  .ytlv-premium-editorial .ytlv-container {
    width: min(1120px, 100%);
  }

  .ytlv-premium-editorial .ytlv-section-head p {
    font-size: 0.98rem;
  }

  .ytlv-premium-editorial .ytlv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 46px;
  }

  .ytlv-premium-editorial .ytlv-card {
    padding: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytlv-premium-editorial .ytlv-section {
    padding: 72px 24px;
  }

  .ytlv-premium-editorial .ytlv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .ytlv-premium-editorial .ytlv-card {
    padding: 24px;
    border-radius: 20px;
  }

  .ytlv-premium-editorial .ytlv-card h3 {
    font-size: 1.02rem;
  }

  .ytlv-premium-editorial .ytlv-card p {
    font-size: 0.94rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytlv-premium-editorial .ytlv-section {
    padding: 58px 18px;
  }

  .ytlv-premium-editorial .ytlv-section-head p {
    font-size: 0.94rem;
  }

  .ytlv-premium-editorial .ytlv-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
    margin-top: 34px;
  }

  .ytlv-premium-editorial .ytlv-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ytlv-premium-editorial .ytlv-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytlv-premium-editorial .ytlv-section {
    padding: 50px 15px;
  }

  .ytlv-premium-editorial .ytlv-section-head p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .ytlv-premium-editorial .ytlv-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-top: 30px;
  }

  .ytlv-premium-editorial .ytlv-card {
    padding: 19px;
    border-radius: 17px;
  }

  .ytlv-premium-editorial .ytlv-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    margin-bottom: 17px;
  }

  .ytlv-premium-editorial .ytlv-icon i {
    font-size: 1.08rem;
  }

  .ytlv-premium-editorial .ytlv-process::before {
    font-size: 4.2rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytlv-premium-editorial .ytlv-section {
    padding: 44px 12px;
  }

  .ytlv-premium-editorial .ytlv-section-head p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .ytlv-premium-editorial .ytlv-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-top: 26px;
  }

  .ytlv-premium-editorial .ytlv-card {
    padding: 17px;
    border-radius: 16px;
  }

  .ytlv-premium-editorial .ytlv-card h3 {
    font-size: 0.96rem;
  }

  .ytlv-premium-editorial .ytlv-card p {
    font-size: 0.86rem;
  }

  .ytlv-premium-editorial .ytlv-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 15px;
  }

  .ytlv-premium-editorial .ytlv-icon i {
    font-size: 1rem;
  }

  .ytlv-premium-editorial .ytlv-process::before {
    right: 12px;
    font-size: 3.6rem;
  }
}

@media (max-width: 319px) {
  .ytlv-premium-editorial .ytlv-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ytlv-premium-editorial .ytlv-card,
  .ytlv-premium-editorial .ytlv-card *,
  .ytlv-premium-editorial .ytlv-card::before,
  .ytlv-premium-editorial .ytlv-card::after {
    transition: none !important;
    animation: none !important;
  }

  .ytlv-premium-editorial .ytlv-card,
  .ytlv-premium-editorial .ytlv-card.is-visible {
    opacity: 1;
    transform: none !important;
  }
}