.lowest-price-board {
  --lowest-visible: 5;
  --lowest-gap: 14px;
  margin: 42px 0 56px;
  background: #fff;
}

.lowest-price-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.lowest-price-heading > div:first-child > span {
  display: block;
  margin-bottom: 6px;
  color: #339cff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.lowest-price-heading h2 {
  margin: 0;
  color: #1778db;
  font-size: clamp(27px, 2.4vw, 35px);
  line-height: 1.16;
  letter-spacing: -.055em;
}

.lowest-price-heading p {
  margin: 7px 0 0;
  color: #7d8999;
  font-size: 14px;
}

.lowest-price-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lowest-price-actions > a,
.lowest-price-actions > button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9dcff;
  border-radius: 999px;
  background: #fff;
  color: #087bd1;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.lowest-price-actions > a {
  gap: 7px;
  padding: 0 15px;
  white-space: nowrap;
}

.lowest-price-actions > a i,
.lowest-price-actions > button i {
  font-style: normal;
}

.lowest-price-actions > button {
  width: 44px;
  padding: 0;
  cursor: pointer;
}

.lowest-price-actions > button:focus-visible,
.lowest-price-actions > a:focus-visible {
  outline: 3px solid rgba(51, 156, 255, .28);
  outline-offset: 2px;
}

.lowest-price-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  touch-action: pan-y;
  cursor: grab;
}

.lowest-price-carousel .lowest-price-card,
.lowest-price-carousel .lowest-price-card img {
  -webkit-user-drag: none;
}

.lowest-price-carousel .lowest-price-card {
  cursor: grab;
}

.lowest-price-carousel.is-dragging,
.lowest-price-carousel.is-dragging .lowest-price-card {
  cursor: grabbing;
  user-select: none;
}

.lowest-price-track {
  display: flex;
  width: max-content;
  max-width: none;
  align-items: flex-start;
  gap: var(--lowest-gap);
  background: #fff;
  will-change: transform;
}

.lowest-price-card {
  --lowest-card-bg-image: none;
  --lowest-card-text: #1a1c1f;
  --lowest-card-muted: #657080;
  --lowest-card-accent: #3e766d;
  --lowest-card-line: rgba(49, 43, 39, .13);
  position: relative;
  isolation: isolate;
  display: flex;
  flex: 0 0 var(--lowest-card-width, 280px);
  width: var(--lowest-card-width, 280px);
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1 / 2;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px;
  border: 1px solid var(--lowest-card-line);
  border-radius: 16px;
  background: var(--lowest-card-bg-image) center / cover no-repeat;
  box-shadow: 0 16px 36px rgba(64, 27, 31, .13);
  color: var(--lowest-card-text);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.home .lowest-price-board,
.home .lowest-price-carousel,
.home .lowest-price-track {
  border-color: transparent;
  background-color: #fff;
}

.lowest-price-card::before,
.lowest-price-card::after {
  display: none;
}

.lowest-price-card:focus-visible {
  outline: 4px solid color-mix(in srgb, var(--lowest-card-accent) 42%, white);
  outline-offset: -4px;
}

.lowest-price-hot {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 15px;
  display: grid;
  width: 38px;
  height: 48px;
  place-items: center;
  padding-bottom: 7px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #ff3548 0%, #e80f27 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .06em;
  filter: drop-shadow(0 5px 8px rgba(190, 8, 31, .24));
  pointer-events: none;
}

.lowest-price-logo {
  box-sizing: border-box;
  display: flex;
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 10px auto 0;
  border-radius: 22%;
  /* Keep the artwork's own app-tile edges clean. Several source files are
     opaque or slightly wider than a square, so a dark backing leaks through
     their anti-aliased/contain-fit edges as bars and halos. */
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lowest-price-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: inherit;
  pointer-events: none;
}

.lowest-price-logo img {
  filter: none;
}

.lowest-price-name {
  display: inline-flex;
  order: 0 !important;
  max-width: 100%;
  overflow: hidden;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #15171a;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lowest-price-offer {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 146px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 11px 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 2px 8px rgba(20, 27, 38, .06);
  justify-content: center;
}

.lowest-price-savings {
  min-width: 0;
  color: #138b5d;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.lowest-price-offer.lowest-price-offer--glass {
  display: grid;
  min-height: 146px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 13px 28px rgba(44, 17, 22, .10);
  grid-template-rows: auto auto auto 1px auto;
  align-content: center;
  gap: 5px;
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  backdrop-filter: blur(14px) saturate(118%);
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-offer-top {
  display: grid;
  min-width: 0;
  order: 0 !important;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-name {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  align-items: initial;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.035em;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lowest-price-card.service-youtube
  .lowest-price-offer.lowest-price-offer--glass
  .lowest-price-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: normal;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-discount {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border: 1px solid rgba(34, 185, 119, .16);
  border-radius: 999px;
  color: #087a4d;
  background: #dff8ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-regular {
  display: flex;
  min-width: 0;
  order: 1 !important;
  align-items: baseline;
  gap: 4px;
  color: #9aa5b4;
  font-size: 10px;
  line-height: 1;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-regular small {
  color: #7d8999;
  font-size: 8.5px;
  font-weight: 750;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-regular s {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration-thickness: 1px;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-savings {
  order: 2 !important;
  color: #138b5d;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.1;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-divider {
  display: block;
  width: 100%;
  height: 1px;
  order: 3 !important;
  background: linear-gradient(90deg, rgba(45, 187, 120, .46), transparent);
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-monthly {
  display: flex;
  min-width: 0;
  order: 4 !important;
  align-items: baseline;
  color: #171b22;
  font-size: 21px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.lowest-price-offer.lowest-price-offer--glass .lowest-price-monthly small {
  margin-left: 2px;
  color: #778395;
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.lowest-price-offer em {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  color: #2dbb78;
  font-size: clamp(17px, 1.8vw, 23px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.lowest-price-offer s {
  display: inline-block;
  color: #aeb8c7;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-decoration-thickness: 1px;
}

.lowest-price-offer s {
  order: 1 !important;
}

.lowest-price-offer > em {
  order: 2 !important;
}

.lowest-price-offer > strong {
  order: 3 !important;
}

.lowest-price-card.service-youtube .lowest-price-name {
  flex-direction: column;
  align-items: flex-start;
  white-space: normal;
}

.lowest-price-card .lowest-price-offer:not(:has(.lowest-price-name))::before {
  order: 0 !important;
  margin-bottom: 1px;
  color: #15171a;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.lowest-price-card.service-youtube
  .lowest-price-offer:not(:has(.lowest-price-name))::before {
  content: "YouTube\A Premium";
  white-space: pre-line;
}

.lowest-price-card.service-netflix
  .lowest-price-offer:not(:has(.lowest-price-name))::before {
  content: "Netflix";
}

.lowest-price-card.service-disney
  .lowest-price-offer:not(:has(.lowest-price-name))::before {
  content: "Disney+";
}

.lowest-price-card.service-tving
  .lowest-price-offer:not(:has(.lowest-price-name))::before {
  content: "TVING";
}

.lowest-price-card.service-wavve
  .lowest-price-offer:not(:has(.lowest-price-name))::before {
  content: "Wavve";
}

.lowest-price-card.service-watcha
  .lowest-price-offer:not(:has(.lowest-price-name))::before {
  content: "Watcha";
}

.lowest-price-card.service-laftel
  .lowest-price-offer:not(:has(.lowest-price-name))::before {
  content: "Laftel";
}

.lowest-price-offer em {
  font-size: clamp(17px, 1.8vw, 23px);
}

.lowest-price-offer strong {
  margin-top: 0;
}

.lowest-price-offer strong small {
  margin-left: .12em;
}

.lowest-price-offer > s {
  align-self: flex-start;
}

.lowest-price-offer > em {
  align-self: flex-start;
}

.lowest-price-offer > strong {
  align-self: flex-start;
}

.lowest-price-offer s {
  line-height: 1;
}

.lowest-price-offer strong {
  display: inline-flex;
  align-items: baseline;
  max-width: 100%;
  min-height: 0;
  margin-top: 0;
  padding: 0;
  color: var(--lowest-card-text);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.lowest-price-offer strong small {
  color: var(--lowest-card-muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.lowest-price-card.is-unavailable .lowest-price-offer em {
  color: var(--lowest-card-muted);
}

.lowest-price-card.is-unavailable .lowest-price-offer strong {
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 400;
  letter-spacing: -.035em;
}

.lowest-price-card.service-youtube {
  --lowest-card-bg-image: url("/assets/ott-bg/youtube.jpg?v=175");
  --lowest-card-accent: #c94e50;
  --lowest-card-line: rgba(148, 80, 71, .16);
}

.lowest-price-card.service-netflix {
  --lowest-card-bg-image: url("/assets/ott-bg/netflix.jpg?v=175");
  --lowest-card-accent: #a83d49;
  --lowest-card-line: rgba(125, 57, 64, .16);
}

.lowest-price-card.service-disney {
  --lowest-card-bg-image: url("/assets/ott-bg/disney.jpg?v=175");
  --lowest-card-accent: #397d89;
  --lowest-card-line: rgba(55, 111, 121, .16);
}

.lowest-price-card.service-tving {
  --lowest-card-bg-image: url("/assets/ott-bg/tving.jpg?v=177");
  --lowest-card-accent: #bd4c6f;
  --lowest-card-line: rgba(148, 70, 93, .16);
}

.lowest-price-card.service-wavve {
  --lowest-card-bg-image: url("/assets/ott-bg/wavve.jpg?v=175");
  --lowest-card-accent: #4d70a4;
  --lowest-card-line: rgba(70, 99, 139, .16);
}

.lowest-price-card.service-watcha {
  --lowest-card-bg-image: url("/assets/ott-bg/watcha.jpg?v=175");
  --lowest-card-accent: #a94c77;
  --lowest-card-line: rgba(128, 67, 94, .16);
}

.lowest-price-card.service-laftel {
  --lowest-card-bg-image: url("/assets/ott-bg/laftel.jpg?v=180");
  --lowest-card-accent: #76609c;
  --lowest-card-line: rgba(100, 81, 132, .16);
}

.lowest-price-note {
  margin: 12px 2px 0;
  color: #97a2b0;
  font-size: 11px;
}

.lowest-price-cta {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lowest-price-cta a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid #dda71c;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.025em;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(213, 157, 23, .18);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.lowest-price-cta-icon {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  color: currentColor;
}

.lowest-price-cta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lowest-price-cta-label {
  min-width: 0;
  white-space: nowrap;
}

.lowest-price-cta a.find {
  background: #ffc94a;
  color: #1a1c1f;
}

.lowest-price-cta a.create {
  border-color: #1b84df;
  background: #339cff;
  box-shadow: 0 5px 14px rgba(22, 126, 219, .18);
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .lowest-price-cta a:hover {
    filter: brightness(1.025);
    transform: translateY(-1px);
  }
}

.lowest-price-cta a:active {
  box-shadow: 0 3px 9px rgba(32, 83, 131, .14);
  transform: translateY(1px) scale(.99);
}

.lowest-price-cta a:focus-visible {
  outline: 3px solid rgba(51, 156, 255, .3);
  outline-offset: 2px;
}

.lowest-price-carousel.is-reduced-motion {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: auto;
}

.lowest-price-carousel.is-reduced-motion::-webkit-scrollbar {
  display: none;
}

.lowest-price-carousel.is-reduced-motion .lowest-price-track {
  transform: none !important;
}

.lowest-price-carousel.is-reduced-motion .lowest-price-card {
  scroll-snap-align: start;
}

@media (max-width: 1199px) {
  .lowest-price-board {
    --lowest-visible: 4;
  }
}

@media (max-width: 899px) {
  .lowest-price-board {
    --lowest-visible: 3;
    --lowest-gap: 12px;
  }
}

@media (max-width: 767px) {
  .lowest-price-board {
    --lowest-gap: 8px;
    margin: 27px 0 39px;
  }

  .lowest-price-heading {
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .lowest-price-heading > div:first-child > span {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .lowest-price-heading h2 {
    font-size: 23px;
  }

  .lowest-price-heading p {
    max-width: 215px;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.4;
  }

  .lowest-price-actions {
    gap: 5px;
  }

  .lowest-price-actions > a {
    width: auto;
    min-height: 40px;
    padding: 0 13px;
    font-size: 12px;
  }

  .lowest-price-card {
    padding: clamp(9px, 2.7vw, 12px);
    border-radius: clamp(17px, 4.8vw, 21px);
  }

  .lowest-price-logo {
    width: min(70%, 84px);
    height: auto;
    margin-top: clamp(11px, 3.4vw, 16px);
  }

  .lowest-price-name {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    font-size: clamp(12px, 3.45vw, 14px);
  }

  .lowest-price-card .lowest-price-offer:not(:has(.lowest-price-name))::before {
    font-size: 10.5px;
  }

  .lowest-price-offer {
    gap: 3px;
  }

  .lowest-price-offer em {
    min-height: 0;
    padding: 0;
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .lowest-price-offer strong {
    min-height: 0;
    margin-top: 0;
    padding: 0;
    font-size: clamp(14px, 4.7vw, 18px);
  }

  .lowest-price-card.is-unavailable .lowest-price-offer strong {
    font-size: clamp(12px, 3.4vw, 15px);
    white-space: normal;
  }

  .lowest-price-note {
    margin-top: 9px;
    font-size: 9px;
    line-height: 1.4;
  }

  .lowest-price-cta {
    position: relative;
    z-index: 2;
    display: grid !important;
    width: calc(100% - 12px);
    margin-top: 22px;
    margin-right: 6px;
    margin-left: 6px;
    gap: 8px;
    visibility: visible;
  }

  .lowest-price-cta a {
    display: flex !important;
    min-height: 50px;
    gap: 8px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    visibility: visible;
  }

  .lowest-price-cta-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (max-width: 599px) {
  .lowest-price-board {
    --lowest-visible: 3;
  }

  .lowest-price-carousel {
    width: calc(100% - 12px);
    margin-inline: 6px;
  }
}

@media (max-width: 374px) {
  .lowest-price-board {
    --lowest-visible: 2;
  }

  .lowest-price-card {
    padding: 13px;
    border-radius: 21px;
  }

  .lowest-price-name {
    font-size: 14px;
  }

  .lowest-price-offer strong {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lowest-price-track {
    will-change: auto;
  }

  .lowest-price-cta a {
    transition: none;
  }

  .lowest-price-cta a:hover,
  .lowest-price-cta a:active {
    transform: none;
  }
}

/* 2026 fintech-style OTT price dashboard */
.price-dashboard {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid #dfe8f2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 48, 78, .08);
}

.price-dashboard-head {
  position: relative;
  display: flex;
  min-height: 168px;
  padding: 30px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 0%, rgba(71, 181, 255, .34), transparent 38%),
    linear-gradient(135deg, #07182d 0%, #0b3158 58%, #0b4974 100%);
  color: #fff;
}

.price-dashboard-head::after {
  position: absolute;
  right: -36px;
  bottom: -82px;
  width: 260px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.price-dashboard-head > div:first-child {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.price-dashboard-head > div:first-child > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8bcaff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.price-dashboard-head > div:first-child > span i,
.price-dashboard footer > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #44e29b;
  box-shadow: 0 0 0 5px rgba(68, 226, 155, .12);
}

.price-dashboard-head h3 {
  margin: 11px 0 5px;
  font-family: inherit;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.price-dashboard-head p {
  margin: 0;
  color: #b9cde0;
  font-size: 12px;
}

.price-dashboard-metric {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 190px;
  justify-items: end;
}

.price-dashboard-metric small {
  color: #a9bed2;
  font-size: 10px;
  font-weight: 800;
}

.price-dashboard-metric strong {
  position: relative;
  top: 2px;
  margin-top: 6px;
  color: #fff;
  font-family: "Luckiest Guy", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 1;
  letter-spacing: .01em;
}

.price-dashboard-metric > strong:first-child {
  margin-top: 0;
}

.price-dashboard-metric > strong:first-child + small {
  margin-top: 6px;
}

.price-dashboard-metric strong em {
  margin-left: 2px;
  color: #44e29b;
  font-size: 20px;
  font-style: normal;
}

.price-dashboard-metric > span {
  margin-top: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #dceaf6;
  font-size: 9px;
  font-weight: 750;
}

.price-dashboard-columns,
.price-dashboard-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.35fr) minmax(90px, .75fr) minmax(80px, .65fr) minmax(125px, .9fr);
  align-items: center;
  column-gap: 20px;
}

.price-dashboard-columns {
  min-height: 43px;
  padding: 0 32px;
  border-bottom: 1px solid #e8eef5;
  background: #f7faff;
  color: #8b98a8;
  font-size: 10px;
  font-weight: 850;
}

.price-dashboard-columns span:not(:first-child) {
  text-align: right;
}

.price-dashboard-rows {
  padding: 0 32px;
}

.price-dashboard-row {
  min-height: 67px;
  border-bottom: 1px solid #edf1f5;
  color: #172231;
  transition: background-color .18s ease;
}

.price-dashboard-row:hover {
  background: transparent;
}

.price-dashboard-row:focus-visible {
  background: #f7fbff;
  outline: 0;
}

.price-dashboard-row:last-child {
  border-bottom: 0;
}

.price-dashboard-service {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.price-dashboard-service i {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #339cff;
  box-shadow: 0 0 0 5px #e8f4ff;
}

.price-dashboard-row.service-youtube .price-dashboard-service i { background: #ff3131; box-shadow: 0 0 0 5px #fff0f0; }
.price-dashboard-row.service-netflix .price-dashboard-service i { background: #e50914; box-shadow: 0 0 0 5px #fff0f1; }
.price-dashboard-row.service-disney .price-dashboard-service i { background: #1595c8; box-shadow: 0 0 0 5px #eaf8fd; }
.price-dashboard-row.service-tving .price-dashboard-service i { background: #ff174f; box-shadow: 0 0 0 5px #fff0f4; }
.price-dashboard-row.service-wavve .price-dashboard-service i { background: #126dff; box-shadow: 0 0 0 5px #edf4ff; }
.price-dashboard-row.service-watcha .price-dashboard-service i { background: #ff2f76; box-shadow: 0 0 0 5px #fff0f5; }
.price-dashboard-row.service-laftel .price-dashboard-service i { background: #7857ff; box-shadow: 0 0 0 5px #f1edff; }

.price-dashboard-row[class*="service-"] .price-dashboard-service i {
  background: #339cff;
  box-shadow: 0 0 0 5px #e8f4ff;
}

.price-dashboard-row.is-unavailable .price-dashboard-service i {
  background: #ef4454;
  box-shadow: 0 0 0 5px #fff0f2;
}

.price-dashboard-row.is-pending .price-dashboard-service i {
  background: #b7c2ce;
  box-shadow: 0 0 0 5px #f0f3f6;
}

.price-dashboard-service b {
  overflow: hidden;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-dashboard-row > s,
.price-dashboard-row > .price-dashboard-regular,
.price-dashboard-row > em,
.price-dashboard-row > strong {
  justify-self: end;
  white-space: nowrap;
}

.price-dashboard-row > s,
.price-dashboard-row > .price-dashboard-regular {
  color: #a0acb9;
  font-size: 13.5px;
  text-decoration: none;
}

.price-dashboard-row > em {
  min-width: 56px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e8faf2;
  color: #17a96b;
  font-family: inherit;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -.02em;
  text-align: center;
}

.price-dashboard-row > strong {
  color: #087fd1;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.035em;
}

.price-dashboard-row > strong small {
  margin-left: 2px;
  color: #8290a0;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 9px;
  font-weight: 650;
}

.price-dashboard-row.is-unavailable > em {
  border: 1px solid #ffcbd1;
  background: linear-gradient(135deg, #fff1f3 0%, #ffe1e5 100%);
  color: #e03c50;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.price-dashboard-row.is-unavailable > strong {
  color: #d84a5a;
  font-size: 12px;
}

.price-dashboard footer {
  display: flex;
  min-height: 54px;
  padding: 0 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e8eef5;
  background: #fbfdff;
}

.price-dashboard footer > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #137dbf;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .12em;
  white-space: nowrap;
}

.price-dashboard footer > span i {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 4px rgba(68, 226, 155, .12);
}

.price-dashboard footer p {
  margin: 0;
  color: #8a96a5;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 767px) {
  .price-dashboard {
    margin: 32px 6px 0;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(24, 48, 78, .08);
  }

  .price-dashboard-head {
    min-height: 132px;
    padding: 20px 18px;
    gap: 12px;
  }

  .price-dashboard-head h3 {
    margin-top: 8px;
    font-size: clamp(14px, 4vw, 19px);
  }

  .price-dashboard-head p {
    max-width: 185px;
    font-size: 9px;
    line-height: 1.45;
  }

  .price-dashboard-metric {
    min-width: 86px;
  }

  .price-dashboard-metric strong {
    font-size: 34px;
  }

  .price-dashboard-metric strong em {
    font-size: 15px;
  }

  .price-dashboard-metric > span {
    padding: 4px 7px;
    font-size: 8px;
  }

  .price-dashboard-columns,
  .price-dashboard-row {
    grid-template-columns: minmax(102px, 1.2fr) minmax(58px, .72fr) minmax(48px, .58fr) minmax(76px, .9fr);
    column-gap: 7px;
  }

  .price-dashboard-columns {
    min-height: 36px;
    padding: 0 14px;
    font-size: 9px;
  }

  .price-dashboard-rows {
    padding: 0 14px;
  }

  .price-dashboard-row {
    min-height: 55px;
  }

  .price-dashboard-service {
    gap: 8px;
  }

  .price-dashboard-service i {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
    box-shadow: 0 0 0 3px #e8f4ff;
  }

  .price-dashboard-service b {
    font-size: 10.5px;
  }

  .price-dashboard-row > s,
  .price-dashboard-row > .price-dashboard-regular {
    font-size: 10.5px;
  }

  .price-dashboard-row > em {
    min-width: 42px;
    padding: 5px 5px;
    font-size: 10px;
  }

  .price-dashboard-row > strong {
    font-size: 12px;
  }

  .price-dashboard-row > strong small {
    display: block;
    margin: 1px 0 0;
    font-size: 7px;
    text-align: right;
  }

  .price-dashboard footer {
    min-height: 50px;
    padding: 9px 14px;
    gap: 10px;
  }

  .price-dashboard footer p {
    font-size: 8px;
    line-height: 1.45;
  }
}

/* Keep dashboard labels and values on the same centered column axes. */
.price-dashboard .price-dashboard-columns {
  justify-items: center;
}

.price-dashboard .price-dashboard-columns > span {
  width: 100%;
  text-align: center;
}

.price-dashboard .price-dashboard-service {
  justify-content: flex-start;
}

.price-dashboard .price-dashboard-service b {
  font-size: 15px;
}

.price-dashboard .price-dashboard-row > :is(s, .price-dashboard-regular, em, strong) {
  justify-self: center;
  text-align: center;
}

.price-dashboard .price-dashboard-row > strong small {
  display: inline;
  margin-left: 2px;
  text-align: center;
}

@media (max-width: 767px) {
  .price-dashboard .price-dashboard-service b {
    font-size: 12px;
  }
}

.price-dashboard .price-dashboard-service i {
  box-shadow: none !important;
}

/* Links remain visually stable while the browser follows them. */
.price-dashboard-row,
.price-dashboard-row:hover,
.price-dashboard-row:active,
.price-dashboard-row:focus,
.price-dashboard-row:focus-visible {
  -webkit-tap-highlight-color: transparent;
  filter: none !important;
  transform: none !important;
}

.lowest-price-cta a,
.lowest-price-cta a:hover,
.lowest-price-cta a:active,
.lowest-price-cta a:focus {
  -webkit-tap-highlight-color: transparent;
}

.price-dashboard-row:active {
  background: transparent !important;
  box-shadow: none !important;
}

.lowest-price-cta a:active {
  box-shadow: 0 3px 9px rgba(32, 83, 131, .14) !important;
}

/* Use the real OTT mark as a small app icon in the price board instead of a
   generic colored dot. The service name remains the accessible text label. */
.price-dashboard .price-dashboard-service .price-dashboard-logo {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  box-sizing: border-box;
  border: 1px solid #e2eaf2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(32, 63, 97, .12);
  object-fit: contain;
}

@media (max-width: 767px) {
  .price-dashboard .price-dashboard-service .price-dashboard-logo {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    border-radius: 7px;
  }
}

/* The two primary party actions belong to the end of the home story, below
   the notice list, rather than inside the price board. */
.home .home-bottom-cta {
  margin-top: 14px;
  margin-bottom: 56px;
}

.home .home-notice-only {
  padding-bottom: 18px !important;
}

@media (max-width: 767px) {
  .home .home-bottom-cta {
    margin-top: 10px;
    margin-bottom: 36px;
  }

  .home .home-notice-only {
    padding-bottom: 14px !important;
  }
}
