@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");

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

.ytv-premium-editorial {
  --ytv-ink: #171717;
  --ytv-muted: #66606a;
  --ytv-line: rgba(40, 28, 20, 0.11);
  --ytv-grad-a: #ff2f4f;
  --ytv-grad-b: #ff8a3d;
  --ytv-grad-c: #7c3aed;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ytv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.ytv-premium-editorial .ytv-section,
.ytv-premium-editorial .ytv-container,
.ytv-premium-editorial .ytv-card-grid {
  width: 100%;
  max-width: 100%;
}

.ytv-premium-editorial .ytv-section {
  position: relative;
  overflow: hidden;
}

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

.ytv-premium-editorial .ytv-section-warm {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 47, 79, 0.1), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(255, 138, 61, 0.14), transparent 30%),
    linear-gradient(180deg, #fff7f2 0%, #fffaf6 48%, #fff3ec 100%);
}

.ytv-premium-editorial .ytv-container {
  margin: 0 auto;
}

.ytv-premium-editorial .ytv-heading-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ytv-premium-editorial .ytv-heading-wrap h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-heading-wrap h2 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(105deg, var(--ytv-grad-a), var(--ytv-grad-b) 48%, var(--ytv-grad-c));
  -webkit-background-clip: text;
  background-clip: text;
}

.ytv-premium-editorial .ytv-heading-wrap p {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--ytv-muted);
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-card-grid {
  display: grid;
  align-items: stretch;
}

.ytv-premium-editorial .ytv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --ytv-card-a: #ff4d5f;
  --ytv-card-b: #ff9d42;
  --ytv-card-soft: rgba(255, 77, 95, 0.1);
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--ytv-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.92));
  box-shadow: 0 18px 45px rgba(40, 28, 20, 0.08);
  opacity: 0;
  transform: translateY(22px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  transform-style: preserve-3d;
  transition:
    opacity 0.7s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  will-change: transform;
}

.ytv-premium-editorial .ytv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 38%),
    radial-gradient(circle at var(--fg-mx) var(--fg-my), var(--ytv-card-soft), transparent 34%);
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.ytv-premium-editorial .ytv-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ytv-card-a), var(--ytv-card-b));
  opacity: 0.72;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

.ytv-premium-editorial .ytv-card:hover {
  border-color: color-mix(in srgb, var(--ytv-card-a) 34%, rgba(40, 28, 20, 0.16));
  box-shadow: 0 26px 70px rgba(40, 28, 20, 0.14);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

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

.ytv-premium-editorial .ytv-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.ytv-premium-editorial .ytv-icon,
.ytv-premium-editorial .ytv-card h3,
.ytv-premium-editorial .ytv-card p,
.ytv-premium-editorial .ytv-card-cta,
.ytv-premium-editorial .ytv-step-inline {
  position: relative;
  z-index: 1;
}

.ytv-premium-editorial .ytv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  border-radius: 18px;
  color: var(--ytv-card-a);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), var(--ytv-card-soft));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.76), 0 12px 24px rgba(40, 28, 20, 0.08);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

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

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

.ytv-premium-editorial .ytv-card h3 {
  display: inline;
  margin: 22px 0 0;
  color: #181518;
  font-size: 1.04rem;
  line-height: 1.32;
  font-weight: 790;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--ytv-card-a), var(--ytv-card-b));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-card:hover h3 {
  background-size: 100% 2px;
}

.ytv-premium-editorial .ytv-card p {
  margin: 14px 0 0;
  color: var(--ytv-muted);
  line-height: 1.66;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytv-premium-editorial .ytv-card:hover .ytv-card-cta {
  opacity: 1;
  transform: translateY(0);
  color: color-mix(in srgb, var(--ytv-card-a) 72%, #111);
}

.ytv-premium-editorial .ytv-card-why {
  perspective: 900px;
}

.ytv-premium-editorial .ytv-card-step::before {
  content: var(--ytv-step);
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 0;
  color: var(--ytv-card-a);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 1;
  font-weight: 900;
  opacity: 0.075;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.ytv-premium-editorial .ytv-card-step:hover::before {
  opacity: 0.14;
  transform: translateY(-4px) scale(1.04);
}

.ytv-premium-editorial .ytv-step-inline {
  display: inline-block;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--ytv-card-a) 78%, #222);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-card:nth-child(1) { --ytv-card-a: #ff2f4f; --ytv-card-b: #ff8a3d; --ytv-card-soft: rgba(255, 47, 79, 0.11); }
.ytv-premium-editorial .ytv-card:nth-child(2) { --ytv-card-a: #f97316; --ytv-card-b: #eab308; --ytv-card-soft: rgba(249, 115, 22, 0.12); }
.ytv-premium-editorial .ytv-card:nth-child(3) { --ytv-card-a: #7c3aed; --ytv-card-b: #ec4899; --ytv-card-soft: rgba(124, 58, 237, 0.1); }
.ytv-premium-editorial .ytv-card:nth-child(4) { --ytv-card-a: #0891b2; --ytv-card-b: #22c55e; --ytv-card-soft: rgba(8, 145, 178, 0.1); }
.ytv-premium-editorial .ytv-card:nth-child(5) { --ytv-card-a: #dc2626; --ytv-card-b: #fb7185; --ytv-card-soft: rgba(220, 38, 38, 0.1); }
.ytv-premium-editorial .ytv-card:nth-child(6) { --ytv-card-a: #2563eb; --ytv-card-b: #06b6d4; --ytv-card-soft: rgba(37, 99, 235, 0.1); }
.ytv-premium-editorial .ytv-card:nth-child(7) { --ytv-card-a: #16a34a; --ytv-card-b: #84cc16; --ytv-card-soft: rgba(22, 163, 74, 0.1); }
.ytv-premium-editorial .ytv-card:nth-child(8) { --ytv-card-a: #9333ea; --ytv-card-b: #f43f5e; --ytv-card-soft: rgba(147, 51, 234, 0.1); }

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

  .ytv-premium-editorial .ytv-container {
    max-width: 1240px;
  }

  .ytv-premium-editorial .ytv-heading-wrap p {
    font-size: 1.04rem;
  }

  .ytv-premium-editorial .ytv-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .ytv-premium-editorial .ytv-card {
    padding: 30px;
  }
}

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

  .ytv-premium-editorial .ytv-container {
    max-width: 1060px;
  }

  .ytv-premium-editorial .ytv-heading-wrap p {
    font-size: 1rem;
  }

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

  .ytv-premium-editorial .ytv-card {
    padding: 28px;
  }
}

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

  .ytv-premium-editorial .ytv-container {
    max-width: 760px;
  }

  .ytv-premium-editorial .ytv-heading-wrap p {
    font-size: 0.98rem;
  }

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

  .ytv-premium-editorial .ytv-card {
    padding: 26px;
  }

  .ytv-premium-editorial .ytv-card h3 {
    font-size: 1rem;
  }

  .ytv-premium-editorial .ytv-card p {
    font-size: 0.95rem;
  }
}

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

  .ytv-premium-editorial .ytv-heading-wrap p {
    font-size: 0.95rem;
  }

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

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

  .ytv-premium-editorial .ytv-card-cta {
    width: 100%;
  }
}

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

  .ytv-premium-editorial .ytv-heading-wrap p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

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

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

  .ytv-premium-editorial .ytv-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .ytv-premium-editorial .ytv-card h3 {
    font-size: 0.98rem;
  }

  .ytv-premium-editorial .ytv-card p {
    font-size: 0.92rem;
  }
}

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

  .ytv-premium-editorial .ytv-heading-wrap p {
    font-size: 0.88rem;
    line-height: 1.56;
  }

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

  .ytv-premium-editorial .ytv-card {
    padding: 18px;
    border-radius: 16px;
  }

  .ytv-premium-editorial .ytv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

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

  .ytv-premium-editorial .ytv-card h3 {
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .ytv-premium-editorial .ytv-card p,
  .ytv-premium-editorial .ytv-card-cta {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .ytv-premium-editorial .ytv-step-inline {
    font-size: 0.74rem;
  }
}

@media (max-width: 319px) {
  .ytv-premium-editorial .ytv-section {
    padding: 42px 10px;
  }

  .ytv-premium-editorial .ytv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 22px;
  }

  .ytv-premium-editorial .ytv-card {
    padding: 16px;
  }
}

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

  .ytv-premium-editorial .ytv-card {
    opacity: 1;
    transform: none !important;
  }
}