@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: #1d2433;
  --ytv-muted: #667085;
  --ytv-line: rgba(180, 69, 69, 0.15);
  --ytv-red: #e53935;
  --ytv-rose: #ff6b6b;
  --ytv-amber: #f59e0b;
  --ytv-bg-soft: #fff6f2;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ytv-ink);
}

.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 15% 10%, rgba(255, 107, 107, 0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.14), transparent 32%),
    linear-gradient(180deg, #fff8f4 0%, #fff2ea 100%);
}

.ytv-premium-editorial .ytv-container {
  width: min(1220px, 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 92px 28px;
}

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

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

.ytv-premium-editorial .ytv-heading-wrap h2 span {
  background: linear-gradient(135deg, #e53935 0%, #ff6b6b 48%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ytv-premium-editorial .ytv-heading-wrap p {
  margin: 14px auto 0;
  max-width: 690px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ytv-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytv-premium-editorial .ytv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --ytv-card-a: #e53935;
  --ytv-card-b: #ff8a65;
  --ytv-card-soft: rgba(229, 57, 53, 0.08);
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(229, 57, 53, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 243, 0.92));
  box-shadow: 0 16px 36px rgba(33, 37, 48, 0.08);
  transform: translateY(22px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, var(--ytv-card-soft), transparent 48%),
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--ytv-card-a) 18%, transparent), transparent 34%);
  opacity: 0.78;
  transition: opacity 0.28s ease;
}

.ytv-premium-editorial .ytv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--ytv-card-a), var(--ytv-card-b));
  opacity: 0.72;
}

.ytv-premium-editorial .ytv-card.ytv-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) 38%, transparent);
  box-shadow: 0 24px 52px rgba(35, 39, 50, 0.14);
  transform: translateY(-7px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y));
}

.ytv-premium-editorial .ytv-tilt-grid .ytv-card {
  transform-style: preserve-3d;
}

.ytv-premium-editorial .ytv-icon {
  width: 54px;
  height: 54px;
  max-width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--ytv-card-a);
  background: linear-gradient(145deg, #fff, var(--ytv-card-soft));
  border: 1px solid color-mix(in srgb, var(--ytv-card-a) 16%, transparent);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--ytv-card-a) 16%, transparent);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease, border-color 0.28s 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-card-a), var(--ytv-card-b));
  border-color: transparent;
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
}

.ytv-premium-editorial .ytv-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 12px;
  font-size: 1.04rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
  color: #1c2331;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

.ytv-premium-editorial .ytv-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--ytv-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytv-premium-editorial .ytv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--ytv-card-a);
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s 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-process-card {
  min-height: 256px;
}

.ytv-premium-editorial .ytv-step-number {
  position: absolute;
  right: 18px;
  top: 12px;
  max-width: 40%;
  font-size: 3.7rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  color: color-mix(in srgb, var(--ytv-card-a) 13%, transparent);
  transition: transform 0.28s ease, color 0.28s ease;
  pointer-events: none;
  overflow: hidden;
}

.ytv-premium-editorial .ytv-process-card:hover .ytv-step-number {
  color: color-mix(in srgb, var(--ytv-card-a) 22%, transparent);
  transform: translateY(-4px) scale(1.05);
}

.ytv-premium-editorial .ytv-card:nth-child(1) { --ytv-card-a: #e53935; --ytv-card-b: #ff7043; --ytv-card-soft: rgba(229, 57, 53, 0.08); }
.ytv-premium-editorial .ytv-card:nth-child(2) { --ytv-card-a: #d81b60; --ytv-card-b: #ff8a80; --ytv-card-soft: rgba(216, 27, 96, 0.08); }
.ytv-premium-editorial .ytv-card:nth-child(3) { --ytv-card-a: #f59e0b; --ytv-card-b: #ffca28; --ytv-card-soft: rgba(245, 158, 11, 0.10); }
.ytv-premium-editorial .ytv-card:nth-child(4) { --ytv-card-a: #8e24aa; --ytv-card-b: #ff6f91; --ytv-card-soft: rgba(142, 36, 170, 0.08); }
.ytv-premium-editorial .ytv-card:nth-child(5) { --ytv-card-a: #00897b; --ytv-card-b: #26c6da; --ytv-card-soft: rgba(0, 137, 123, 0.08); }
.ytv-premium-editorial .ytv-card:nth-child(6) { --ytv-card-a: #3949ab; --ytv-card-b: #5c6bc0; --ytv-card-soft: rgba(57, 73, 171, 0.08); }
.ytv-premium-editorial .ytv-card:nth-child(7) { --ytv-card-a: #ef6c00; --ytv-card-b: #ffb74d; --ytv-card-soft: rgba(239, 108, 0, 0.09); }
.ytv-premium-editorial .ytv-card:nth-child(8) { --ytv-card-a: #c62828; --ytv-card-b: #ff5252; --ytv-card-soft: rgba(198, 40, 40, 0.08); }

@media (min-width: 1200px) {
  .ytv-premium-editorial .ytv-container {
    width: min(1220px, 100%);
    padding: 96px 28px;
  }

  .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-container {
    width: min(1060px, 100%);
    padding: 84px 26px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ytv-premium-editorial .ytv-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    padding: 22px;
  }

  .ytv-premium-editorial .ytv-icon {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytv-premium-editorial .ytv-container {
    padding: 50px 16px;
  }

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

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

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

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

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

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

  .ytv-premium-editorial .ytv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

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

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

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

  .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: 14px;
  }

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

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

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

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

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

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

@media (max-width: 767px) {
  .ytv-premium-editorial .ytv-card:hover {
    transform: translateY(-4px);
  }

  .ytv-premium-editorial .ytv-cta {
    opacity: 0.75;
    transform: none;
  }
}

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

  .ytv-premium-editorial .ytv-card,
  .ytv-premium-editorial .ytv-card.ytv-visible,
  .ytv-premium-editorial .ytv-card:hover {
    transform: none !important;
  }
}