:root {
  --blog-ink: #101425;
  --blog-night: #090d19;
  --blog-panel: #151a2d;
  --blog-rose: #e52b70;
  --blog-rose-dark: #bb1752;
  --blog-gold: #f2b442;
  --blog-muted: #686c79;
  --blog-line: #e9e3e7;
  --blog-soft: #f8f5f7;
  --blog-white: #fff;
}

html {
  scroll-behavior: smooth;
}

body.rfc-blog {
  min-width: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  background: #fff !important;
  color: var(--blog-ink) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

body.rfc-blog *,
body.rfc-blog *::before,
body.rfc-blog *::after {
  box-sizing: border-box;
}

.rfc-blog img {
  max-width: 100%;
}

.rfc-blog-header {
  position: relative;
  z-index: 800;
  min-height: 76px;
  background: #fff;
}

.rfc-blog-header .rfc-global-header {
  width: min(1180px, calc(100% - 36px)) !important;
  min-height: 76px !important;
  margin-bottom: 0 !important;
}

.rfc-blog-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.rfc-blog-kicker,
.rfc-blog-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blog-rose);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rfc-blog-kicker::before,
.rfc-blog-section-kicker::before {
  width: 24px;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
  content: "";
}

.rfc-blog-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(229, 43, 112, 0.24), transparent 31%),
    radial-gradient(circle at 92% 18%, rgba(242, 180, 66, 0.15), transparent 26%),
    linear-gradient(135deg, #090d19 0%, #14192d 58%, #21101f 100%);
  color: #fff;
  padding: 66px 0 72px;
}

.rfc-blog-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.8fr);
  gap: clamp(34px, 5vw, 70px);
}

.rfc-blog-hero-copy {
  max-width: 650px;
}

.rfc-blog-hero .rfc-blog-kicker,
.rfc-article-hero .rfc-blog-kicker,
.rfc-blog-conversion .rfc-blog-kicker {
  color: #ff7aa9;
}

body.rfc-blog .rfc-blog-hero h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  color: #fff !important;
  font-size: clamp(44px, 6vw, 74px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.055em !important;
  line-height: 0.98 !important;
}

body.rfc-blog .rfc-blog-hero h1 span {
  color: #ff4b87 !important;
}

.rfc-blog-hero-copy > p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.68;
}

.rfc-blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.rfc-blog-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  padding: 13px 19px;
  text-decoration: none !important;
}

.rfc-blog-btn-primary {
  background: linear-gradient(135deg, #fa4380, #cf1e60);
  box-shadow: 0 14px 34px rgba(229, 43, 112, 0.28);
  color: #fff !important;
}

.rfc-blog-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.rfc-blog-reassurance {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 0;
  gap: 8px 18px;
  padding: 0;
  list-style: none;
}

.rfc-blog-reassurance li {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  padding-left: 17px;
}

.rfc-blog-reassurance li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blog-gold);
  content: "";
}

.rfc-blog-featured {
  position: relative;
  display: block;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: #22283c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  color: #fff !important;
  text-decoration: none !important;
}

.rfc-blog-featured > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.rfc-blog-featured:hover > img {
  transform: scale(1.025);
}

.rfc-blog-featured-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 18, 0.03) 18%, rgba(6, 9, 18, 0.92) 100%);
}

.rfc-blog-featured-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 9px;
  padding: 30px;
}

.rfc-blog-featured-content > span {
  width: fit-content;
  border-radius: 999px;
  background: var(--blog-rose);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.rfc-blog-featured-content strong {
  color: #fff;
  font-size: clamp(23px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.rfc-blog-featured-content small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.rfc-blog-intro {
  border-bottom: 1px solid var(--blog-line);
  background: #fff;
  padding: 50px 0;
}

.rfc-blog-intro-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(30px, 6vw, 90px);
}

.rfc-blog-intro h2,
.rfc-blog-section-heading h2,
.rfc-blog-conversion h2,
.rfc-blog-related h2 {
  margin: 10px 0 0 !important;
  color: var(--blog-ink) !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.08 !important;
}

.rfc-blog-intro-grid > p {
  margin: 0;
  color: var(--blog-muted);
  font-size: 17px;
  line-height: 1.75;
}

.rfc-blog-main,
.rfc-blog-related {
  background: var(--blog-soft);
  padding: 72px 0 84px;
}

.rfc-blog-section-heading {
  display: flex;
  margin-bottom: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.rfc-blog-section-heading > p {
  max-width: 340px;
  margin: 0;
  color: var(--blog-muted);
  font-size: 14px;
  text-align: right;
}

.rfc-blog-section-heading > a {
  color: var(--blog-rose-dark) !important;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.rfc-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.rfc-blog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--blog-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 20, 37, 0.055);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.rfc-blog-card:hover {
  box-shadow: 0 18px 42px rgba(16, 20, 37, 0.11);
  transform: translateY(-3px);
}

.rfc-blog-card-image {
  display: block;
  overflow: hidden;
  background: #e7e3e5;
  aspect-ratio: 16 / 9;
}

.rfc-blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.rfc-blog-card:hover .rfc-blog-card-image img {
  transform: scale(1.025);
}

.rfc-blog-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.rfc-blog-card-meta {
  display: flex;
  margin-bottom: 11px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #8a8d98;
  font-size: 11px;
  font-weight: 750;
}

.rfc-blog-card-meta > span {
  color: var(--blog-rose-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfc-blog-card h3 {
  margin: 0 0 12px !important;
  color: var(--blog-ink) !important;
  font-size: 21px !important;
  font-weight: 850 !important;
  letter-spacing: -0.028em !important;
  line-height: 1.22 !important;
}

.rfc-blog-card h3 a {
  color: inherit !important;
  text-decoration: none;
}

.rfc-blog-card p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--blog-muted);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.rfc-blog-read {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 7px;
  color: var(--blog-rose-dark) !important;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none !important;
}

.rfc-blog-empty {
  border: 1px solid var(--blog-line);
  border-radius: 18px;
  background: #fff;
  padding: 36px;
  text-align: center;
}

.rfc-blog-empty h3 {
  margin: 0 0 8px;
}

.rfc-blog-empty p {
  margin: 0;
  color: var(--blog-muted);
}

.rfc-blog-conversion {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(229, 43, 112, 0.22), transparent 30%),
    linear-gradient(135deg, #0c1120, #1c1120);
  color: #fff;
  padding: 72px 0;
}

.rfc-blog-conversion-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 420px;
  gap: clamp(38px, 8vw, 110px);
}

body.rfc-blog .rfc-blog-conversion h2 {
  max-width: 690px;
  color: #fff !important;
}

.rfc-blog-conversion-copy > p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.rfc-blog-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.rfc-blog-trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 11px;
}

.rfc-blog-signup-panel,
.rfc-article-signup {
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  color: var(--blog-ink);
  padding: 24px;
}

.rfc-blog-signup-panel > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.rfc-blog-signup-panel small,
.rfc-article-signup small {
  display: block;
  margin-top: 12px;
  color: #858894;
  font-size: 10px;
  line-height: 1.5;
}

.rfc-blog #formuser {
  min-height: 160px;
}

.rfc-blog #formuser input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.rfc-blog #formuser select,
.rfc-blog #formuser textarea {
  width: 100% !important;
  min-height: 46px !important;
  border: 1px solid #ddd7dc !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--blog-ink) !important;
  font-size: 16px !important;
  padding: 10px 12px !important;
}

.rfc-blog #formuser button,
.rfc-blog #formuser input[type="submit"],
.rfc-blog #formuser a[class*="btn"] {
  width: 100% !important;
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: linear-gradient(135deg, #fa4380, #cf1e60) !important;
  box-shadow: 0 10px 26px rgba(207, 30, 96, 0.25) !important;
  color: #fff !important;
  font-weight: 850 !important;
}

/* Page article */
.rfc-article-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(242, 180, 66, 0.13), transparent 26%),
    radial-gradient(circle at 14% 18%, rgba(229, 43, 112, 0.2), transparent 32%),
    linear-gradient(135deg, #090d19, #191225);
  color: #fff;
  padding: 34px 0 62px;
}

.rfc-article-breadcrumbs {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.rfc-article-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none;
}

.rfc-article-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: clamp(38px, 6vw, 80px);
}

body.rfc-blog .rfc-article-hero-copy h1 {
  margin: 17px 0 20px !important;
  color: #fff !important;
  font-size: clamp(38px, 5.2vw, 64px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.02 !important;
}

.rfc-article-hero-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.68;
}

.rfc-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
}

.rfc-article-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 10;
}

.rfc-article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rfc-article-layout-section {
  background: #fff;
  padding: 70px 0 80px;
}

.rfc-article-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 760px) minmax(290px, 340px);
  justify-content: space-between;
  gap: clamp(40px, 7vw, 90px);
}

.rfc-article-content {
  min-width: 0;
  color: #343847;
  font-size: 17px;
  line-height: 1.82;
}

.rfc-article-content > :first-child {
  margin-top: 0 !important;
}

.rfc-article-content p {
  margin: 0 0 22px;
}

.rfc-article-content h2 {
  margin: 46px 0 17px !important;
  color: var(--blog-ink) !important;
  font-size: clamp(27px, 3.5vw, 38px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.15 !important;
}

.rfc-article-content h3 {
  margin: 32px 0 12px !important;
  color: var(--blog-ink) !important;
  font-size: 23px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
}

.rfc-article-content ul,
.rfc-article-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.rfc-article-content li {
  margin-bottom: 8px;
}

.rfc-article-content a {
  color: var(--blog-rose-dark) !important;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.rfc-article-content img {
  height: auto !important;
  margin: 22px auto;
  border-radius: 14px;
}

.rfc-article-content blockquote {
  margin: 30px 0;
  border-left: 4px solid var(--blog-rose);
  border-radius: 0 12px 12px 0;
  background: var(--blog-soft);
  padding: 22px 25px;
}

.rfc-article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.rfc-article-content th,
.rfc-article-content td {
  border: 1px solid var(--blog-line);
  padding: 10px;
}

.rfc-article-inline-cta {
  display: flex;
  margin-top: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-radius: 18px;
  background: linear-gradient(135deg, #12182a, #281322);
  color: #fff;
  padding: 25px;
}

.rfc-article-inline-cta span {
  display: block;
  color: #ff83ac;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rfc-article-inline-cta strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.rfc-article-inline-cta a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #fa4380, #cf1e60);
  color: #fff !important;
  font-size: 13px;
  font-weight: 850;
  padding: 11px 15px;
  text-decoration: none !important;
}

.rfc-article-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
}

.rfc-article-signup {
  border-color: var(--blog-line);
  box-shadow: 0 18px 50px rgba(16, 20, 37, 0.1);
}

.rfc-article-signup h2 {
  margin: 10px 0 !important;
  color: var(--blog-ink) !important;
  font-size: 25px !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.13 !important;
}

.rfc-article-signup > p {
  margin: 0 0 17px;
  color: var(--blog-muted);
  font-size: 13px;
}

.rfc-article-safety {
  border: 1px solid var(--blog-line);
  border-radius: 16px;
  background: var(--blog-soft);
  padding: 20px;
}

.rfc-article-safety strong {
  font-size: 14px;
}

.rfc-article-safety ul {
  margin: 12px 0 0;
  color: var(--blog-muted);
  font-size: 12px;
  padding-left: 18px;
}

.rfc-article-safety li + li {
  margin-top: 7px;
}

.rfc-blog-related {
  border-top: 1px solid var(--blog-line);
}

@media (max-width: 1020px) {
  .rfc-blog-hero-grid,
  .rfc-article-hero-grid {
    grid-template-columns: 1fr 0.82fr;
  }

  .rfc-blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rfc-blog-conversion-grid {
    grid-template-columns: 1fr 370px;
  }

  .rfc-article-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 38px;
  }
}

@media (max-width: 800px) {
  .rfc-blog-hero,
  .rfc-article-hero {
    padding-top: 42px;
  }

  .rfc-blog-hero-grid,
  .rfc-article-hero-grid,
  .rfc-blog-intro-grid,
  .rfc-blog-conversion-grid,
  .rfc-article-layout {
    grid-template-columns: 1fr;
  }

  .rfc-blog-featured {
    min-height: 390px;
  }

  .rfc-blog-intro-grid {
    gap: 18px;
  }

  .rfc-blog-conversion-grid {
    gap: 30px;
  }

  .rfc-article-hero-media {
    aspect-ratio: 16 / 9;
  }

  .rfc-article-sidebar {
    position: static;
    grid-row: 1;
  }

  .rfc-article-content {
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .rfc-blog-shell {
    width: calc(100% - 24px);
  }

  .rfc-blog-header,
  .rfc-blog-header .rfc-global-header {
    min-height: 67px !important;
  }

  .rfc-blog-hero {
    padding: 36px 0 42px;
  }

  body.rfc-blog .rfc-blog-hero h1 {
    font-size: 43px !important;
  }

  .rfc-blog-hero-copy > p {
    font-size: 16px;
  }

  .rfc-blog-hero-actions,
  .rfc-blog-hero-actions .rfc-blog-btn {
    width: 100%;
  }

  .rfc-blog-featured {
    min-height: 330px;
    border-radius: 19px;
  }

  .rfc-blog-featured-content {
    padding: 22px;
  }

  .rfc-blog-intro,
  .rfc-blog-main,
  .rfc-blog-related,
  .rfc-blog-conversion,
  .rfc-article-layout-section {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .rfc-blog-section-heading {
    display: block;
  }

  .rfc-blog-section-heading > p {
    margin-top: 13px;
    text-align: left;
  }

  .rfc-blog-section-heading > a {
    display: inline-block;
    margin-top: 14px;
  }

  .rfc-blog-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rfc-blog-card-body {
    padding: 19px;
  }

  .rfc-blog-signup-panel,
  .rfc-article-signup {
    padding: 20px;
  }

  .rfc-article-hero {
    padding: 24px 0 38px;
  }

  .rfc-article-breadcrumbs {
    margin-bottom: 22px;
    overflow: hidden;
    white-space: nowrap;
  }

  body.rfc-blog .rfc-article-hero-copy h1 {
    font-size: 38px !important;
  }

  .rfc-article-hero-copy > p {
    font-size: 15px;
  }

  .rfc-article-layout {
    gap: 30px;
  }

  .rfc-article-content {
    font-size: 16px;
    line-height: 1.75;
  }

  .rfc-article-content h2 {
    margin-top: 36px !important;
  }

  .rfc-article-inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .rfc-article-inline-cta a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .rfc-blog-card,
  .rfc-blog-card-image img,
  .rfc-blog-featured > img {
    transition: none;
  }
}
