@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 {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #251f1c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.ytv-premium-editorial .ytv-section-warm {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 75, 43, 0.12), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(255, 184, 77, 0.16), transparent 34%),
    linear-gradient(180deg, #fff8f3 0%, #fff1e7 100%);
}

.ytv-premium-editorial .ytv-container {
  width: min(1240px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
}

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

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

.ytv-premium-editorial h2 span {
  background: linear-gradient(135deg, #ff2f2f 0%, #ff7a3d 46%, #d9912b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ytv-premium-editorial .ytv-heading-wrap p {
  margin: 12px auto 0;
  color: #6b5b54;
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-card-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ytv-premium-editorial .ytv-card {
  --ytv-accent: #ff3b30;
  --ytv-accent-2: #ff9a3d;
  --ytv-soft: rgba(255, 59, 48, 0.1);
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 250px;
  padding: 26px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(92, 57, 42, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.9));
  box-shadow: 0 18px 45px rgba(58, 32, 24, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.ytv-premium-editorial .ytv-card:nth-child(2) { --ytv-accent: #e94b86; --ytv-accent-2: #ff8f70; --ytv-soft: rgba(233, 75, 134, 0.11); }
.ytv-premium-editorial .ytv-card:nth-child(3) { --ytv-accent: #7864ff; --ytv-accent-2: #ff6f61; --ytv-soft: rgba(120, 100, 255, 0.11); }
.ytv-premium-editorial .ytv-card:nth-child(4) { --ytv-accent: #0f9f8f; --ytv-accent-2: #f2a03d; --ytv-soft: rgba(15, 159, 143, 0.11); }
.ytv-premium-editorial .ytv-card:nth-child(5) { --ytv-accent: #c15b20; --ytv-accent-2: #ffc857; --ytv-soft: rgba(193, 91, 32, 0.11); }
.ytv-premium-editorial .ytv-card:nth-child(6) { --ytv-accent: #2f80ed; --ytv-accent-2: #ff5f6d; --ytv-soft: rgba(47, 128, 237, 0.11); }
.ytv-premium-editorial .ytv-card:nth-child(7) { --ytv-accent: #6f9e2e; --ytv-accent-2: #f6b352; --ytv-soft: rgba(111, 158, 46, 0.11); }
.ytv-premium-editorial .ytv-card:nth-child(8) { --ytv-accent: #9b4dca; --ytv-accent-2: #ff7a45; --ytv-soft: rgba(155, 77, 202, 0.11); }

.ytv-premium-editorial .ytv-card:hover {
  border-color: color-mix(in srgb, var(--ytv-accent) 42%, rgba(92, 57, 42, 0.18));
  box-shadow: 0 26px 70px rgba(72, 38, 26, 0.15);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.ytv-premium-editorial .ytv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--ytv-accent);
  background: linear-gradient(145deg, var(--ytv-soft), rgba(255, 255, 255, 0.88));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 12px 26px rgba(50, 28, 20, 0.08);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

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

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

.ytv-premium-editorial h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 11px;
  color: #261b17;
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytv-premium-editorial .ytv-card:hover h3::after {
  width: 76px;
}

.ytv-premium-editorial .ytv-card p {
  margin: 0;
  color: #675952;
  font-size: 0.94rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--ytv-accent);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
  opacity: 0.55;
  transform: translateY(7px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytv-premium-editorial .ytv-benefit-grid .ytv-card:hover {
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-8px);
}

.ytv-premium-editorial .ytv-process-card {
  min-height: 265px;
}

.ytv-premium-editorial .ytv-step-number {
  position: absolute;
  right: 18px;
  top: 10px;
  max-width: 45%;
  color: var(--ytv-accent);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.ytv-premium-editorial .ytv-process-card:hover .ytv-step-number {
  opacity: 0.15;
  transform: translateY(-4px) scale(1.06);
}

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

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

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

  .ytv-premium-editorial .ytv-container {
    width: min(1080px, calc(100% - 42px));
  }

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

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

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

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

  .ytv-premium-editorial .ytv-container {
    width: min(920px, calc(100% - 36px));
  }

  .ytv-premium-editorial .ytv-heading-wrap {
    margin-bottom: 28px;
  }

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

  .ytv-premium-editorial .ytv-card {
    padding: 23px 20px 22px;
  }

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

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

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

  .ytv-premium-editorial .ytv-container {
    width: min(100%, calc(100% - 28px));
  }

  .ytv-premium-editorial .ytv-heading-wrap {
    margin-bottom: 24px;
  }

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

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

  .ytv-premium-editorial .ytv-card {
    min-height: auto;
    padding: 22px 18px;
  }

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

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

  .ytv-premium-editorial .ytv-container {
    width: min(100%, calc(100% - 24px));
  }

  .ytv-premium-editorial .ytv-heading-wrap {
    margin-bottom: 22px;
  }

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

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

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

  .ytv-premium-editorial .ytv-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

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

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

  .ytv-premium-editorial .ytv-step-number {
    font-size: 2.9rem;
  }
}

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

  .ytv-premium-editorial .ytv-container {
    width: min(100%, calc(100% - 18px));
  }

  .ytv-premium-editorial .ytv-heading-wrap {
    margin-bottom: 18px;
  }

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

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

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

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

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

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

  .ytv-premium-editorial .ytv-card p,
  .ytv-premium-editorial .ytv-cta {
    font-size: 0.84rem;
  }

  .ytv-premium-editorial .ytv-step-number {
    right: 12px;
    top: 8px;
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ytv-premium-editorial .ytv-card,
  .ytv-premium-editorial .ytv-icon,
  .ytv-premium-editorial h3::after,
  .ytv-premium-editorial .ytv-cta,
  .ytv-premium-editorial .ytv-step-number {
    transition: none;
    transform: none;
  }
}