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

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

.ytarv-premium-editorial {
  --ytarv-ink: #201414;
  --ytarv-muted: #665b58;
  --ytarv-soft: #fff6f2;
  --ytarv-line: rgba(176, 72, 58, 0.18);
  --ytarv-red: #e62117;
  --ytarv-coral: #ff7a59;
  --ytarv-gold: #f3b34f;
  --ytarv-plum: #5e2b52;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ytarv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.ytarv-premium-editorial .ytarv-section-intro,
.ytarv-premium-editorial .ytarv-section-process {
  background: #fff;
}

.ytarv-premium-editorial .ytarv-section-benefits {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 89, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(243, 179, 79, 0.18), transparent 32%),
    linear-gradient(180deg, #fff8f4 0%, #fff2ec 100%);
}

.ytarv-premium-editorial .ytarv-container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.ytarv-premium-editorial .ytarv-heading-wrap h2 {
  margin: 0;
  color: var(--ytarv-ink);
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.13;
  font-weight: 830;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytarv-premium-editorial .ytarv-heading-wrap h2 span {
  background: linear-gradient(105deg, var(--ytarv-red), var(--ytarv-coral) 55%, var(--ytarv-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.ytarv-premium-editorial .ytarv-card {
  --fg-mx: 50%;
  --fg-my: 18%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --ytarv-card-a: #e62117;
  --ytarv-card-b: #ff7a59;
  --ytarv-card-c: #fff4ee;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 242px;
  padding: 26px;
  border: 1px solid rgba(130, 60, 47, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), var(--ytarv-card-c));
  box-shadow: 0 16px 38px rgba(67, 32, 25, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  will-change: transform;
}

.ytarv-premium-editorial .ytarv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ytarv-card-a) 10%, transparent), transparent 42%),
    radial-gradient(circle at 90% 95%, color-mix(in srgb, var(--ytarv-card-b) 15%, transparent), transparent 36%);
  opacity: 0.72;
  transition: opacity 260ms ease;
}

.ytarv-premium-editorial .ytarv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--ytarv-card-a), var(--ytarv-card-b));
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 260ms ease;
}

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

.ytarv-premium-editorial .ytarv-card:hover {
  border-color: color-mix(in srgb, var(--ytarv-card-a) 42%, rgba(130, 60, 47, 0.18));
  box-shadow: 0 24px 54px rgba(67, 32, 25, 0.15);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

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

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

.ytarv-premium-editorial .ytarv-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  max-width: 100%;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--ytarv-card-a);
  background: linear-gradient(145deg, #fff, color-mix(in srgb, var(--ytarv-card-c) 72%, #fff));
  border: 1px solid color-mix(in srgb, var(--ytarv-card-a) 18%, transparent);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--ytarv-card-a) 12%, transparent);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease, border-color 260ms ease;
}

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

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

.ytarv-premium-editorial .ytarv-card h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: var(--ytarv-ink);
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 780;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--ytarv-card-a), var(--ytarv-card-b));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

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

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

.ytarv-premium-editorial .ytarv-process-card {
  min-height: 260px;
}

.ytarv-premium-editorial .ytarv-process-card .ytarv-step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: -1;
  color: color-mix(in srgb, var(--ytarv-card-a) 16%, transparent);
  font-size: 4.7rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 260ms ease, color 260ms ease;
}

.ytarv-premium-editorial .ytarv-process-card:hover .ytarv-step-num {
  color: color-mix(in srgb, var(--ytarv-card-a) 24%, transparent);
  transform: translateY(-4px) scale(1.04);
}

.ytarv-premium-editorial .ytarv-card:nth-child(1) { --ytarv-card-a: #e62117; --ytarv-card-b: #ff7a59; --ytarv-card-c: #fff4ef; }
.ytarv-premium-editorial .ytarv-card:nth-child(2) { --ytarv-card-a: #c9472c; --ytarv-card-b: #f3b34f; --ytarv-card-c: #fff7ea; }
.ytarv-premium-editorial .ytarv-card:nth-child(3) { --ytarv-card-a: #a93f6a; --ytarv-card-b: #ff8f70; --ytarv-card-c: #fff1f5; }
.ytarv-premium-editorial .ytarv-card:nth-child(4) { --ytarv-card-a: #7a4bdb; --ytarv-card-b: #ff7a59; --ytarv-card-c: #f7f2ff; }
.ytarv-premium-editorial .ytarv-card:nth-child(5) { --ytarv-card-a: #0f8b8d; --ytarv-card-b: #f3b34f; --ytarv-card-c: #eefafa; }
.ytarv-premium-editorial .ytarv-card:nth-child(6) { --ytarv-card-a: #d15f2f; --ytarv-card-b: #ef476f; --ytarv-card-c: #fff2ec; }
.ytarv-premium-editorial .ytarv-card:nth-child(7) { --ytarv-card-a: #355c7d; --ytarv-card-b: #ff7a59; --ytarv-card-c: #eff6fb; }
.ytarv-premium-editorial .ytarv-card:nth-child(8) { --ytarv-card-a: #7c3f58; --ytarv-card-b: #f3b34f; --ytarv-card-c: #fff3f0; }

@media (min-width: 1200px) {
  .ytarv-premium-editorial .ytarv-container {
    width: min(1320px, calc(100% - 64px));
    padding: 92px 0;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .ytarv-premium-editorial .ytarv-container {
    width: min(1100px, calc(100% - 48px));
    padding: 78px 0;
  }

  .ytarv-premium-editorial .ytarv-heading-wrap p {
    font-size: 0.97rem;
  }

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .ytarv-premium-editorial .ytarv-container {
    width: min(920px, calc(100% - 40px));
    padding: 66px 0;
  }

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

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

  .ytarv-premium-editorial .ytarv-card {
    padding: 22px;
  }

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

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

@media (min-width: 430px) and (max-width: 767px) {
  .ytarv-premium-editorial .ytarv-container {
    width: min(100% - 28px, 620px);
    padding: 54px 0;
  }

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

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

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

  .ytarv-premium-editorial .ytarv-card {
    min-height: auto;
    padding: 21px;
  }

  .ytarv-premium-editorial .ytarv-cta {
    opacity: 0.75;
    transform: translateY(0);
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytarv-premium-editorial .ytarv-container {
    width: min(100% - 24px, 420px);
    padding: 46px 0;
  }

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

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

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

  .ytarv-premium-editorial .ytarv-card {
    padding: 19px;
    border-radius: 8px;
  }

  .ytarv-premium-editorial .ytarv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
  }

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

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

  .ytarv-premium-editorial .ytarv-process-card .ytarv-step-num {
    font-size: 3.9rem;
  }
}

@media (max-width: 374px) {
  .ytarv-premium-editorial .ytarv-container {
    width: min(100% - 20px, 340px);
    padding: 40px 0;
  }

  .ytarv-premium-editorial .ytarv-heading-wrap {
    margin-bottom: 20px;
  }

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

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

  .ytarv-premium-editorial .ytarv-card {
    min-height: auto;
    padding: 17px;
    border-radius: 8px;
  }

  .ytarv-premium-editorial .ytarv-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

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

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

  .ytarv-premium-editorial .ytarv-card p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .ytarv-premium-editorial .ytarv-cta {
    font-size: 0.82rem;
    opacity: 0.78;
    transform: translateY(0);
  }

  .ytarv-premium-editorial .ytarv-process-card .ytarv-step-num {
    top: 16px;
    right: 16px;
    font-size: 3.35rem;
  }
}

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

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