@charset "UTF-8";
body .rf-subscribe {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body .rf-subscribe__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--contrast-3);
}
body .rf-subscribe__row {
  display: flex;
  gap: 0;
}
body .rf-subscribe input[type=email], body .rf-subscribe__input {
  flex: 1;
  padding: 14px 12px !important;
  font-size: 13px;
  font-family: inherit;
  color: #626f81;
  background-color: #27313f;
  border: 1px solid #626f81;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color 0.2s ease;
}
body .rf-subscribe input[type=email]::-moz-placeholder, body .rf-subscribe__input::-moz-placeholder {
  color: #868d9a;
}
body .rf-subscribe input[type=email]::placeholder, body .rf-subscribe__input::placeholder {
  color: #868d9a;
}
body .rf-subscribe input[type=email]:focus, body .rf-subscribe__input:focus {
  color: #fff;
  border-color: var(--contrast-3);
  background-color: rgba(255, 255, 255, 0.12);
}
body .rf-subscribe__notice {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid transparent;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--rf-text-on-dark);
  font-size: 13px;
  line-height: 1.5;
}
body .rf-subscribe__notice--success {
  border-left-color: var(--rf-label-card);
}
body .rf-subscribe__notice--error {
  border-left-color: #e08585;
}
body .rf-subscribe__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
body .rf-subscribe button, body .rf-subscribe__button {
  height: 50px;
  padding: 0 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--rf-label-card);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  font-family: var(--gp-font--oswald);
  letter-spacing: 1.2px;
}
body .rf-subscribe button:hover, body .rf-subscribe__button:hover {
  background-color: #b05838;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* ─── GP Standard + RigFig Custom Tokens — set via Customizer, NOT here ───
     These are already defined by GeneratePress (Customizer → Global Colors /
     Palette). Do NOT redeclare them in this file — GP owns them, and a
     duplicate declaration here risks silently drifting out of sync with the
     live Customizer values (exactly what happened before this comment block
     was fixed — this file's copy had gone stale: --base/--base-2 here were
     #f5f0e8/#ede8dd while GP's real live values were already #f0eade/#e8e4d9).
     Reference only, kept in sync manually — confirm against the Customizer
     if a color looks off before assuming this list is current.

     --contrast:              #3b4b62
     --contrast-2:            #606c7b
     --contrast-3:            #727c88
     --base:                  #f0eade
     --base-2:                #e8e4d9
     --base-3:                #ffffff
     --accent:                #c56441
     --rf-bg-darker:          #191d24
     --rf-price:              #946c3b
     --rf-label-card:         #949b7a
     --rf-text-on-dark:       #afb6bf
     --rf-text-body-on-dark:  #e8e6e1
     --rf-border:             #d6d4cc
     --rf-post-bg:            #f0eade
     --rf-post-bg-alt:        #e8e4d9
  */
  /* ─── Genuinely custom tokens — NOT in GP's palette, live here ─── */
  --rf-border-hover: #936b3a;
  --rf-border-subtle: color-mix(in srgb, var(--rf-border-hover) 25%, transparent);
  --rf-border-on-dark: #4f5d72;
  --site-admin-offset: 0px;
  /* ─── Semantic tokens (decoupled from the raw GP names above) ───
     Same values as their light-mode source in :root; body.rf-dark-mode
     below redefines them for dark mode. Component SCSS should reach for
     these instead of --contrast/--base/etc directly wherever the meaning
     is "heading text" / "page background" / etc — --contrast itself is
     dual-purpose (heading color in most places, but also the dark
     background for header/footer/dark sections elsewhere), so a direct
     light/dark swap on --contrast itself would break whichever use case
     isn't the one you're thinking about. See AGENTS.md-adjacent note in
     .docs/project-context.md → Key Decisions Log for the full rationale. */
  --rf-heading: var(--contrast);
  --rf-body: var(--contrast-2);
  --rf-muted: var(--contrast-3);
  --rf-page-bg: var(--base);
  --rf-page-bg-alt: var(--base-2);
  --rf-surface: var(--base-3);
  --rf-button-alt-bg: var(--contrast);
}

body.admin-bar {
  --site-admin-offset: var(--wp-admin--admin-bar--height, 32px);
}

body.rf-dark-mode {
  --rf-heading: #ffffff;
  --rf-body: #a8a29e;
  --rf-muted: var(--rf-body);
  --rf-page-bg: #1e2631;
  --rf-page-bg-alt: var(--rf-bg-darker);
  --rf-surface: #27313f;
  --rf-button-alt-bg: #282729;
}

body.rf-dark-mode .rf-filter-tabs .gbp-button--alt {
  background-color: var(--rf-label-card);
  color: var(--contrast);
  border-color: var(--rf-label-card);
}
body.rf-dark-mode .rf-filter-tabs .gbp-button--alt:is(:hover, :focus, :active) {
  background-color: var(--rf-label-card);
  color: var(--contrast);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}

html body {
  color: var(--rf-body);
  background-color: var(--rf-page-bg);
}
html body h1, html body h2, html body h3, html body h4 {
  color: var(--rf-heading);
}
html body a {
  color: var(--accent);
}
html body a:hover {
  color: var(--base-3);
}
html body hr.wp-block-separator {
  border-top: 1px solid var(--rf-border-subtle);
}
html body .page-header {
  margin-top: 50px;
}
html body .site-content {
  min-height: 70vh;
}
html body.archive .gb-site-header, html body.search .gb-site-header, html body.page:not(.home) .gb-site-header, html body.error404 .gb-site-header {
  background-color: var(--contrast);
}
html body.archive .site-content, html body.search .site-content, html body.page:not(.home) .site-content, html body.error404 .site-content {
  padding-bottom: 100px;
}
.gb-shape svg {
  width: 1rem;
}
.rf-product-card {
  background-color: var(--rf-surface);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 410px;
  transition: border-color 0.2s ease;
}
.rf-product-card:hover {
  border-color: var(--rf-border-hover);
}
.rf-product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rf-product-card__category {
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-label-card);
  line-height: 1;
}
.rf-product-card__price {
  font-family: var(--gp-font--varela-round);
  font-size: 16px;
  font-weight: 600;
  color: var(--rf-price);
  line-height: 1;
}
.rf-product-card__title {
  font-family: var(--gp-font--oswald);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--rf-heading);
  line-height: 1.1;
  margin: 0;
}
.rf-product-card__info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gp-font--varela-round);
  font-size: 12px;
  color: var(--contrast-3);
  line-height: 1;
  margin-top: -6px;
}
.rf-product-card__info svg {
  fill: var(--rf-label-card);
  height: 1rem;
  width: 1rem;
}
.rf-product-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rf-product-card__feature {
  background-color: var(--rf-page-bg-alt);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rf-product-card__feature-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-label-card);
  line-height: 1;
}
body.rf-dark-mode .rf-product-card__feature-label {
  color: #a8a29e;
}
.rf-product-card__feature-value {
  font-size: 20px;
  font-family: var(--gp-font--eurydice);
  color: var(--rf-heading);
  line-height: 1;
  text-transform: uppercase;
}
.rf-product-card__feature-value span {
  font-size: 13px;
  font-weight: 400;
  color: var(--rf-body);
}
.rf-product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rf-product-card__actions .gbp-button {
  width: 100%;
  justify-content: center;
}

.rf-feature-card {
  background-color: var(--base);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
body.rf-dark-mode .rf-feature-card {
  background-color: var(--rf-surface);
}
.rf-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--base-2);
  border: 1px solid var(--rf-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-2);
  font-size: 18px;
  flex-shrink: 0;
}
.rf-feature-card__icon .gb-shape svg {
  height: 20px;
}
body.rf-dark-mode .rf-feature-card__icon {
  background-color: var(--rf-page-bg-alt);
  color: var(--rf-text-on-dark);
}
.rf-feature-card__title {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--contrast);
  line-height: 1.1;
  margin: 0;
}
body.rf-dark-mode .rf-feature-card__title {
  color: var(--rf-heading);
}
.rf-feature-card p {
  font-family: var(--gp-font--varela-round);
  font-size: 15px;
  line-height: 1.65;
  color: var(--contrast-2);
  margin: 0;
  flex: 1;
}
body.rf-dark-mode .rf-feature-card p {
  color: var(--rf-body);
}
.rf-feature-card__cta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--rf-border-subtle);
}

.rf-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.rf-event {
  background-color: var(--base);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  overflow: hidden;
}
body.rf-dark-mode .rf-event {
  background-color: var(--rf-surface);
}
.rf-event__inner {
  display: grid;
  grid-template-columns: minmax(200px, 2fr) 3fr;
}
@media (max-width: 767px) {
  .rf-event__inner {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.rf-event__image {
  position: relative;
  background-color: var(--rf-page-bg-alt);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-event__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.rf-event__image .rf-label--badge {
  position: absolute;
  top: 14px;
  left: 14px;
}
.rf-event__info {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rf-event__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rf-event__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gp-font--oswald);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--contrast-3);
  padding: 8px 12px;
  line-height: 1;
}
body.rf-dark-mode .rf-event__meta-item {
  color: var(--rf-muted);
}
.rf-event__meta-item i {
  font-size: 11px;
}
.rf-event__meta-item:not(.rf-event__meta-item--date) .gb-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--rf-page-bg-alt);
  border-radius: 4px;
  flex-shrink: 0;
}
.rf-event__meta-item:not(.rf-event__meta-item--date) .gb-shape svg {
  width: 11px;
}
.rf-event__meta-item--date {
  background-color: color-mix(in srgb, var(--rf-label-card) 20%, transparent);
  color: var(--rf-label-card);
  font-weight: 700;
  border-radius: 4px;
}
body.rf-dark-mode .rf-event__meta-item--date {
  color: var(--rf-label-card);
}
.rf-event__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--contrast);
  line-height: 1.15;
  margin: 0;
}
body.rf-dark-mode .rf-event__title {
  color: var(--rf-heading);
}
.rf-event p {
  font-family: var(--gp-font--varela-round);
  font-size: 15px;
  line-height: 1.65;
  color: var(--contrast-2);
  margin: 0;
}
body.rf-dark-mode .rf-event p {
  color: var(--rf-body);
}
.rf-event__footer {
  margin-top: 20px;
}

.rf-next-events .rf-next-events__looper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rf-next-events__title {
  font-family: var(--gp-font--oswald);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--contrast);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rf-border-subtle);
}
body.rf-dark-mode .rf-next-events__title {
  color: var(--rf-heading);
}
.rf-next-events__month-break {
  font-family: var(--gp-font--oswald);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-muted);
  margin-top: 10px;
}
.rf-next-events__month-break:first-child {
  margin-top: 0;
}

.rf-event-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background-color: var(--base-3);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
body.rf-dark-mode .rf-event-item {
  background-color: var(--rf-surface);
}
.rf-event-item:hover {
  border-color: var(--rf-border-hover);
}
.rf-event-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 10px 16px;
  background-color: var(--rf-page-bg-alt);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 6px;
  flex-shrink: 0;
  gap: 2px;
}
.rf-event-item__month {
  font-family: var(--gp-font--oswald);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--contrast-3);
  line-height: 1;
}
body.rf-dark-mode .rf-event-item__month {
  color: var(--rf-muted);
}
.rf-event-item__day {
  font-family: var(--gp-font--eurydice);
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast);
  line-height: 1;
}
body.rf-dark-mode .rf-event-item__day {
  color: var(--rf-heading);
}
.rf-event-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.rf-event-item__name {
  font-family: var(--gp-font--oswald);
  font-size: 15px;
  font-weight: 400;
  color: var(--contrast);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.rf-dark-mode .rf-event-item__name {
  color: var(--rf-heading);
}
.rf-event-item__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.rf-event-item__category {
  display: inline-flex;
  align-items: center;
  font-family: var(--gp-font--oswald);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--rf-body);
  background-color: color-mix(in srgb, var(--contrast-3) 15%, transparent);
}
.rf-event-item__category--run-gun {
  color: color-mix(in srgb, var(--rf-label-card) 70%, black);
  background-color: color-mix(in srgb, var(--rf-label-card) 25%, transparent);
}
.rf-event-item__category--precision {
  color: var(--rf-heading);
  background-color: color-mix(in srgb, var(--contrast) 15%, transparent);
}
.rf-event-item__category--nvg {
  color: var(--rf-price);
  background-color: color-mix(in srgb, var(--rf-price) 18%, transparent);
}
.rf-event-item__featured-badge {
  padding: 4px 8px;
  font-size: 10px;
}
.rf-event-item__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--gp-font--oswald);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--contrast-3);
  line-height: 1;
}
body.rf-dark-mode .rf-event-item__location {
  color: var(--rf-muted);
}
.rf-event-item__location .gb-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}
.rf-event-item__location .gb-shape svg {
  width: 9px;
}
.rf-event-item__location .gb-shape svg path {
  fill: currentColor;
}
.rf-event-item__action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
@media (max-width: 640px) {
  .rf-event-item {
    flex-wrap: wrap;
  }
  .rf-event-item__action {
    margin-left: 0;
    width: 100%;
  }
  .rf-event-item__action .gbp-button {
    flex: 1;
  }
}

.rf-calendar .rf-next-events {
  margin-top: 50px;
}
.rf-calendar__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rf-calendar__month-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rf-calendar__month-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--rf-surface);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 6px;
  color: var(--rf-body);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.rf-calendar__month-btn:hover {
  border-color: var(--rf-border-hover);
  color: var(--rf-heading);
}
.rf-calendar__month-label {
  font-family: var(--gp-font--oswald);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rf-heading);
  line-height: 1;
  min-width: 130px;
  text-align: center;
}
.rf-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: var(--rf-surface);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  overflow: hidden;
}
.rf-calendar__weekday {
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-muted);
  text-align: center;
  padding: 12px 6px;
  background-color: var(--rf-page-bg-alt);
  border-bottom: 1px solid var(--rf-border-subtle);
}
.rf-calendar__day {
  min-height: 104px;
  padding: 8px;
  border-bottom: 1px solid var(--rf-border-subtle);
  border-right: 1px solid var(--rf-border-subtle);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rf-calendar__day:nth-child(7n) {
  border-right: none;
}
.rf-calendar__day--last-row {
  border-bottom: none;
}
.rf-calendar__day--outside {
  background-color: var(--rf-page-bg-alt);
}
.rf-calendar__day--today {
  box-shadow: inset 0 0 0 2px var(--rf-border-hover);
  border-radius: 6px;
}
.rf-calendar__day-num {
  font-family: var(--gp-font--oswald);
  font-size: 13px;
  font-weight: 600;
  color: var(--rf-heading);
  line-height: 1;
}
.rf-calendar__day--outside .rf-calendar__day-num {
  color: var(--rf-muted);
}
.rf-calendar__event {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 5px 7px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--rf-body);
  background-color: color-mix(in srgb, var(--contrast-3) 15%, transparent);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: filter 0.15s ease;
}
.rf-calendar__event:hover {
  filter: brightness(0.92);
  color: var(--accent);
}
.rf-calendar__event .gb-shape {
  display: inline-flex;
  flex-shrink: 0;
}
.rf-calendar__event .gb-shape svg {
  width: 9px;
}
.rf-calendar__event--run-gun {
  color: color-mix(in srgb, var(--rf-label-card) 70%, black);
  background-color: color-mix(in srgb, var(--rf-label-card) 25%, transparent);
}
.rf-calendar__event--precision {
  color: var(--rf-heading);
  background-color: color-mix(in srgb, var(--contrast) 15%, transparent);
}
.rf-calendar__event--nvg {
  color: var(--rf-price);
  background-color: color-mix(in srgb, var(--rf-price) 18%, transparent);
}
.rf-calendar__event--featured {
  box-shadow: inset 0 0 0 1px var(--accent);
}
.rf-calendar__event--featured .gb-shape {
  color: var(--accent);
}
.rf-calendar__legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rf-muted);
}
.rf-calendar__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.rf-calendar__legend-item--featured .gb-shape {
  color: var(--accent);
}
.rf-calendar__legend-item--featured .gb-shape svg {
  width: 11px;
}
.rf-calendar__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
  background-color: var(--contrast-3);
}
.rf-calendar__legend-dot--run-gun {
  background-color: var(--rf-label-card);
}
.rf-calendar__legend-dot--precision {
  background-color: var(--contrast);
}
.rf-calendar__legend-dot--nvg {
  background-color: var(--rf-price);
}
@media (max-width: 860px) {
  .rf-calendar__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .rf-calendar__day {
    min-height: 56px;
    padding: 6px;
    gap: 4px;
  }
  .rf-calendar__day-num {
    font-size: 11px;
  }
  .rf-calendar__event {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 3px;
    color: transparent;
    font-size: 0;
  }
  .rf-calendar__event--run-gun {
    background-color: var(--rf-label-card);
  }
  .rf-calendar__event--precision {
    background-color: var(--contrast);
  }
  .rf-calendar__event--nvg {
    background-color: var(--rf-price);
  }
  .rf-calendar__event .gb-shape {
    display: none;
  }
}

.rf-loop-cards {
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: flex;
  row-gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.rf-loop-cards::-webkit-scrollbar {
  display: none;
}
.rf-loop-cards.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rf-loop-cards:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.rf-loop-cards__scroll-hint {
  display: none;
}
@media (max-width: 767px) {
  .rf-loop-cards__scroll-hint {
    display: block;
    margin: 0 0 8px;
    font-family: var(--gp-font--oswald);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rf-muted);
  }
}

@media (max-width: 767px) {
  .gbp-section__inner > :has(.rf-loop-cards) {
    grid-template-columns: minmax(0, 1fr);
  }
  .rf-loop-cards {
    max-width: 100%;
  }
}
.rf-loop-card {
  background-color: var(--base);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
  flex: 0 0 335px;
  min-width: 335px;
}
@media (max-width: 767px) {
  .rf-loop-card {
    flex-basis: min(335px, 100%);
    min-width: 0;
  }
}
body.rf-dark-mode .rf-loop-card {
  background-color: var(--rf-surface);
}
.rf-loop-card__image-wrap {
  margin: 16px 16px 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--rf-page-bg-alt);
  aspect-ratio: 4/3;
  position: relative;
}
.rf-loop-card__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.rf-loop-card__image-wrap-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gp-font--varela-round);
  font-size: 13px;
  color: var(--contrast-3);
}
body.rf-dark-mode .rf-loop-card__image-wrap-placeholder {
  color: var(--rf-muted);
}
.rf-loop-card__image-wrap .rf-label--badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.rf-loop-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 325px;
}
.rf-loop-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rf-loop-card__category {
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-label-card);
  line-height: 1;
}
.rf-loop-card__price {
  font-family: var(--gp-font--varela-round);
  font-size: 15px;
  font-weight: 400;
  color: var(--rf-price);
  line-height: 1;
}
.rf-loop-card__title {
  font-family: var(--gp-font--oswald);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--contrast);
  line-height: 1.15;
  margin: 0;
  transition: color 0.2s ease;
}
body.rf-dark-mode .rf-loop-card__title {
  color: var(--rf-heading);
}
.rf-loop-card__info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gp-font--varela-round);
  font-size: 12px;
  color: var(--contrast-3);
  line-height: 1;
  margin-top: -4px;
}
body.rf-dark-mode .rf-loop-card__info {
  color: var(--rf-muted);
}
.rf-loop-card__info .gb-shape svg {
  width: 1rem;
}
.rf-loop-card__info .gb-shape svg path {
  fill: var(--rf-label-card);
}
.rf-loop-card p {
  font-family: var(--gp-font--varela-round);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--contrast-2);
  margin-bottom: 10px;
}
body.rf-dark-mode .rf-loop-card p {
  color: var(--rf-body);
}
.rf-loop-card__attributes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transition: opacity 0.15s ease;
}
.rf-loop-card__attribute {
  background-color: var(--rf-page-bg-alt);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rf-loop-card__attribute-label {
  font-family: var(--gp-font--oswald);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-label-card);
  line-height: 1;
}
body.rf-dark-mode .rf-loop-card__attribute-label {
  color: var(--rf-body);
}
.rf-loop-card__attribute-value {
  font-family: var(--gp-font--oswald);
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast);
  line-height: 1;
}
body.rf-dark-mode .rf-loop-card__attribute-value {
  color: var(--rf-heading);
}
.rf-loop-card__attribute-value span {
  font-size: 12px;
  font-weight: 400;
  color: var(--rf-label-card);
}
body.rf-dark-mode .rf-loop-card__attribute-value span {
  color: var(--rf-body);
}
.rf-loop-card__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.rf-loop-card__footer .gbp-button {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 8px 12px;
}
.rf-loop-card:hover {
  border-color: var(--rf-label-card);
}
.rf-loop-card:hover .rf-loop-card__title {
  color: var(--rf-label-card);
}

.rf-teaser-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  min-width: 0;
}
@media (max-width: 980px) {
  .rf-teaser-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .rf-teaser-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gb-loop-item.build_tag-featured .rf-teaser-card__image-wrap .rf-label--badge {
  display: inline-block;
}

.rf-teaser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background-color: var(--rf-surface);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.rf-teaser-card:hover {
  border-color: var(--rf-label-card);
}
.rf-teaser-card:hover .rf-teaser-card__title {
  color: var(--rf-label-card);
}
.rf-teaser-card__link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.rf-teaser-card__image-wrap {
  margin: 16px 16px 0;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--rf-page-bg-alt);
  aspect-ratio: 4/3;
  position: relative;
}
.rf-teaser-card__image-wrap img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.rf-teaser-card__image-wrap .rf-label--badge {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.rf-teaser-card__image-wrap-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gp-font--varela-round);
  font-size: 13px;
  color: var(--contrast-3);
}
body.rf-dark-mode .rf-teaser-card__image-wrap-placeholder {
  color: var(--rf-muted);
}
.rf-teaser-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.rf-teaser-card__category {
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-label-card);
  line-height: 1;
}
.rf-teaser-card__title {
  font-family: var(--gp-font--oswald);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--contrast);
  line-height: 1.2;
  margin: 0;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
body.rf-dark-mode .rf-teaser-card__title {
  color: var(--rf-heading);
}
.rf-teaser-card__excerpt {
  font-family: var(--gp-font--varela-round);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--contrast-2);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
body.rf-dark-mode .rf-teaser-card__excerpt {
  color: var(--rf-body);
}
.rf-teaser-card__meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--gp-font--varela-round);
  font-size: 12px;
  color: var(--contrast-3);
  line-height: 1;
  margin-top: auto;
  padding-top: 6px;
}
body.rf-dark-mode .rf-teaser-card__meta {
  color: var(--rf-muted);
}
.rf-teaser-card__meta .gb-shape svg {
  width: 1rem;
  height: 1rem;
}
.rf-teaser-card__meta .gb-shape svg path {
  fill: var(--rf-label-card);
}
.rf-teaser-card__meta a {
  color: var(--contrast-3);
  text-decoration: none;
}
.rf-teaser-card__meta a:hover {
  color: var(--rf-label-card);
  text-decoration: underline;
}
body.rf-dark-mode .rf-teaser-card__meta a {
  color: var(--rf-muted);
}

.rf-kit-preview__grid {
  -moz-column-gap: 12px;
       column-gap: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
  align-items: stretch;
}
.rf-kit-preview__grid > * {
  height: 100%;
  min-width: 0;
}
@media (max-width: 480px) {
  .rf-kit-preview__grid {
    grid-template-columns: 1fr;
  }
}
.rf-kit-preview__title {
  color: var(--rf-heading);
  text-transform: uppercase;
}

.rf-kit-card {
  display: flex;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 14px;
  background-color: var(--base);
  border: 1px solid var(--rf-border-subtle);
}
body.rf-dark-mode .rf-kit-card {
  background-color: var(--rf-surface);
}
.rf-kit-card {
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
}
.rf-kit-card:hover {
  border-color: var(--rf-border-hover);
}
.rf-kit-card__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background-color: var(--rf-page-bg-alt);
  display: flex;
  align-items: center;
  color: var(--rf-text-on-dark);
  font-size: 1rem;
  justify-content: center;
  border: 1px solid var(--rf-border-subtle);
  border-radius: 6px;
  overflow: hidden;
}
.rf-kit-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 6px;
}
.rf-kit-card__info {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 4px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  min-width: 0px;
}
.rf-kit-card__meta {
  font-size: 0.65rem;
  line-height: 1;
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 4px;
  color: var(--rf-muted);
  margin-top: 2px;
}
.rf-kit-card__name {
  font-family: var(--gp-font--oswald);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rf-heading);
  line-height: 1.2;
  overflow-y: hidden;
  overflow-x: hidden;
  white-space: nowrap;
  margin-bottom: 3px;
}
.rf-kit-card__price {
  font-size: 0.9rem;
  color: var(--rf-price);
  align-self: start;
  font-weight: 600;
}
.rf-kit-card__type {
  font-family: var(--gp-font--oswald);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rf-label-card);
  font-weight: 600;
  line-height: 1;
}
.rf-kit-card.is-active {
  border-color: var(--accent);
}
.rf-kit-card__action {
  position: relative;
  flex-shrink: 0;
}
.rf-kit-card__action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.15s ease;
}
.rf-kit-card__action-btn--check {
  background-color: var(--base-2);
  color: var(--contrast-3);
}
.rf-kit-card__action-btn--check:hover {
  background-color: var(--rf-border-subtle);
}
.rf-kit-card__action-btn--add {
  background-color: var(--accent);
  color: var(--base-3);
}
.rf-kit-card__action-btn--add:hover {
  background-color: var(--contrast);
}
.rf-kit-card__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 10;
  margin: 0;
  padding: 4px;
  list-style: none;
  background-color: var(--base-3);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  white-space: nowrap;
}
.rf-kit-card__dropdown[hidden] {
  display: none;
}
.rf-kit-card__dropdown li {
  margin: 0;
  padding: 0;
}
.rf-kit-card__dropdown button {
  display: block;
  width: 100%;
  padding: 9px 14px;
  text-align: left;
  background: none;
  border: none;
  border-radius: 5px;
  font-family: var(--gp-font--oswald);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--contrast);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.rf-kit-card__dropdown button:hover {
  background-color: var(--base-2);
  color: var(--accent);
}

.rf-article-headline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 30px;
  margin-top: 50px;
  clear: both;
}
.rf-article-headline .rf-eyebrow {
  color: var(--rf-label-card);
}
.rf-article-headline__row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rf-article-headline__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 34px;
  background-color: color-mix(in srgb, var(--rf-label-card) 15%, transparent);
  border: 1px solid #ced1b5;
  border-radius: 4px;
  font-family: var(--gp-font--oswald);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--rf-label-card);
}
.rf-article-headline h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--rf-heading);
  margin: 0;
}

.rf-content-image {
  display: block;
  height: auto;
  max-width: 100%;
}
.rf-content-image--left {
  float: left;
  margin: 0 24px 24px 0;
  max-width: min(40%, 280px);
}
.rf-content-image--right {
  float: right;
  margin: 0 0 24px 24px;
  max-width: min(40%, 280px);
}
@media (max-width: 767px) {
  .rf-content-image--left, .rf-content-image--right {
    float: none;
    margin: 0 auto 24px;
    max-width: min(100%, 320px);
  }
}

.rf-rundown-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background-color: var(--rf-surface);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  width: 380px;
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .rf-rundown-card {
    float: none;
    width: 100%;
    margin: 0;
  }
}
.rf-rundown-card__image {
  aspect-ratio: 4/3; /* container ratio fix */
  background: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.rf-rundown-card__image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.rf-rundown-card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rf-rundown-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rf-rundown-card__category {
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-label-card);
  line-height: 1;
}
.rf-rundown-card__price {
  font-family: var(--gp-font--varela-round);
  font-size: 16px;
  font-weight: 600;
  color: var(--rf-price);
  line-height: 1;
}
.rf-rundown-card__title {
  font-family: var(--gp-font--oswald);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--rf-heading);
  line-height: 1.1;
  margin: 0;
}
.rf-rundown-card__info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gp-font--varela-round);
  font-size: 12px;
  color: var(--rf-muted);
  line-height: 1;
}
.rf-rundown-card__info .gb-shape svg {
  width: 1rem;
  height: 1rem;
}
.rf-rundown-card__info .gb-shape svg path {
  fill: var(--rf-label-card);
}
.rf-rundown-card__bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rf-rundown-card__bullets li {
  position: relative;
  padding-left: 14px;
  font-family: var(--gp-font--varela-round);
  font-size: 13px;
  line-height: 1.5;
  color: var(--rf-body);
}
.rf-rundown-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--rf-body);
}
.rf-rundown-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}
.rf-rundown-card__actions .gbp-button {
  flex: 1 1 140px;
  width: auto;
  justify-content: center;
}
.rf-rundown-card--default .rf-rundown-card__actions {
  border-top: 1px solid var(--rf-border-subtle);
}
.rf-rundown-card--condensed {
  width: 280px;
}
@media (max-width: 600px) {
  .rf-rundown-card--condensed {
    width: 100%;
  }
}
.rf-rundown-card--condensed .rf-rundown-card__actions .gbp-button {
  width: 100%;
}
.rf-rundown-card--full {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  float: none;
  width: 100%;
}
.rf-rundown-card--full .rf-rundown-card__image {
  position: relative;
  aspect-ratio: auto;
  height: auto;
  min-height: 120px;
}
.rf-rundown-card--full .rf-rundown-card__image img {
  position: absolute;
  inset: 1rem;
  width: calc(100% - 2rem);
  max-width: calc(100% - 2rem);
  height: calc(100% - 2rem);
}
.rf-rundown-card--float-left {
  float: left;
  margin-right: 24px;
}
.rf-rundown-card--float-right {
  float: right;
  margin-left: 24px;
}
.rf-rundown-card--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px dashed var(--rf-border-subtle);
  background-color: var(--base-2);
}
.rf-rundown-card--empty p {
  font-family: var(--gp-font--varela-round);
  font-size: 13px;
  color: var(--contrast-3);
  margin: 0;
}

@media (max-width: 600px) {
  .rf-rundown-card--full {
    grid-template-columns: minmax(0, 1fr);
  }
  .rf-rundown-card--full .rf-rundown-card__image {
    aspect-ratio: 1/1;
    height: auto;
  }
  .rf-rundown-card--float-left,
  .rf-rundown-card--float-right {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.rf-multi-product-card {
  display: grid;
  grid-template-columns: 150px repeat(var(--rf-product-count), minmax(180px, 1fr));
  min-width: var(--rf-card-min-width);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  background-color: var(--rf-page-bg);
}
.rf-multi-product-card__row {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: subgrid;
  border-bottom: 1px solid var(--rf-border-subtle);
}
.rf-multi-product-card__row:last-child {
  border-bottom: none;
}
.rf-multi-product-card__row--header {
  background-color: var(--rf-page-bg-alt);
  align-items: flex-end;
}
.rf-multi-product-card__cell {
  padding: 16px 18px;
  border-right: 1px solid var(--rf-border-subtle);
  align-items: center;
  display: flex;
  color: #665b35;
}
.rf-multi-product-card__cell:last-child {
  border-right: none;
}
.rf-multi-product-card__cell--label {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: var(--rf-page-bg);
  display: flex;
  padding: 14px 16px;
  height: 100%;
  align-items: flex-end;
}
.rf-multi-product-card__cell--product {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  gap: 12px;
  padding: 20px 16px;
  text-align: center;
}
.rf-multi-product-card__row--header .rf-multi-product-card__cell--label {
  background-color: var(--rf-page-bg-alt);
}
.rf-multi-product-card__row-label {
  font-family: var(--gp-font--oswald);
  text-transform: uppercase;
  color: #665b35;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
.rf-multi-product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  background-color: var(--rf-page-bg-alt);
  border: 1px solid var(--rf-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rf-multi-product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.rf-multi-product-card__placeholder {
  font-family: var(--gp-font--varela-round);
  font-size: 11px;
  color: var(--rf-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rf-multi-product-card__name {
  font-family: var(--gp-font--oswald);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #47390e;
  line-height: 1.1;
  margin: 0;
}
.rf-multi-product-card__price {
  font-family: var(--gp-font--varela-round);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  width: 100%;
  text-align: center;
  display: inline-block;
}
.rf-multi-product-card__verdict {
  font-family: var(--gp-font--varela-round);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.rf-multi-product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.rf-multi-product-card__actions .gbp-button {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 9px 12px;
  white-space: normal;
  text-align: center;
}
body.rf-dark-mode .rf-multi-product-card__cell, body.rf-dark-mode .rf-multi-product-card__row-label {
  color: var(--rf-body);
}
body.rf-dark-mode .rf-multi-product-card__name {
  color: var(--rf-heading);
}
@media (max-width: 640px) {
  .rf-multi-product-card {
    grid-template-columns: 100px repeat(var(--rf-product-count), minmax(180px, 1fr));
    min-width: calc(var(--rf-card-min-width) - 50px);
  }
  .rf-multi-product-card__name {
    font-size: 14px;
  }
  .rf-multi-product-card__price {
    font-size: 18px;
  }
  .rf-multi-product-card__verdict {
    font-size: 12px;
  }
  .rf-multi-product-card__cell--product {
    padding: 14px 10px;
  }
  .rf-multi-product-card__cell--label {
    padding: 12px 10px;
  }
}

.rf-multi-product-card-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 10px;
}
.rf-multi-product-card-wrap::-webkit-scrollbar {
  display: none;
}
.rf-multi-product-card-wrap.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rf-multi-product-card-wrap:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.rf-multi-product-card__scroll-hint {
  display: none;
}
@media (max-width: 640px) {
  .rf-multi-product-card__scroll-hint {
    display: block;
    margin: 0 0 8px;
    font-family: var(--gp-font--oswald);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rf-muted);
  }
}

.rf-complete-kit__wrapper {
  padding-bottom: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--rf-border-subtle);
}

.rf-complete-kit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .rf-complete-kit__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .rf-complete-kit__grid {
    grid-template-columns: 1fr;
  }
}
.rf-complete-kit .rf-kit-card--lg {
  padding: 14px 16px;
  gap: 14px;
  cursor: default;
  transition: border-color 0.2s ease;
}
.rf-complete-kit .rf-kit-card--lg:hover {
  border-color: var(--rf-border-hover);
}
.rf-complete-kit .rf-kit-card--lg.is-active {
  border-color: var(--accent);
}
.rf-complete-kit .rf-kit-card--lg.is-active .rf-kit-card__action-btn {
  background-color: var(--accent);
}
.rf-complete-kit .rf-kit-card--lg.is-active .rf-kit-card__action-btn:hover {
  background-color: color-mix(in srgb, var(--accent) 80%, black);
}
.rf-complete-kit .rf-kit-card--lg .rf-kit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  font-size: 22px;
}
.rf-complete-kit .rf-kit-card--lg .rf-kit-card__name {
  font-size: 15px;
  white-space: normal;
}
.rf-complete-kit .rf-kit-card__action {
  position: relative;
  flex-shrink: 0;
  align-self: center;
}
.rf-complete-kit .rf-kit-card__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}
.rf-complete-kit .rf-kit-card__action-btn .gb-shape svg {
  width: 1rem;
}
.rf-complete-kit .rf-kit-card__action-btn .gb-shape svg path {
  fill: var(--base);
}
.rf-complete-kit .rf-kit-card__action-btn--add {
  background-color: var(--contrast);
  color: var(--base-3);
}
.rf-complete-kit .rf-kit-card__action-btn--add:hover {
  background-color: color-mix(in srgb, var(--contrast) 80%, black);
}
.rf-complete-kit .rf-kit-card__action-btn--check {
  background-color: color-mix(in srgb, var(--rf-border-hover) 30%, transparent);
  border: 1px solid var(--rf-border-subtle);
  color: var(--contrast-3);
  border-radius: 50%;
  width: 28px;
  height: 28px;
}
.rf-complete-kit .rf-kit-card__action-btn--check .gb-shape svg {
  width: 0.7rem;
}
.rf-complete-kit .rf-kit-card__action-btn--check .gb-shape svg path {
  fill: var(--rf-label-card);
}
.rf-complete-kit .rf-kit-card__action-btn--check:hover {
  background-color: var(--base-2);
  color: var(--contrast-2);
}
.rf-complete-kit .rf-kit-card__dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 10;
  margin: 0;
  padding: 4px;
  list-style: none;
  background-color: var(--base-3);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  white-space: nowrap;
}
.rf-complete-kit .rf-kit-card__dropdown[hidden] {
  display: none;
}
.rf-complete-kit .rf-kit-card__dropdown li {
  margin: 0;
  padding: 0;
}
.rf-complete-kit .rf-kit-card__dropdown button {
  display: block;
  width: 100%;
  padding: 9px 14px;
  text-align: left;
  background: none;
  border: none;
  border-radius: 5px;
  font-family: var(--gp-font--oswald);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--contrast);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.rf-complete-kit .rf-kit-card__dropdown button:hover {
  background-color: var(--base-2);
  color: var(--accent);
}

.rf-search-trigger.gbp-button:is(:hover, :focus) svg path {
  fill: var(--accent);
}
.rf-search-trigger.gbp-button:is(:hover, :focus) {
  transform: none;
}
.rf-search-trigger.gbp-button:is(:hover, :focus) .gb-shape svg {
  transform: none;
}

.rf-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-search-overlay[hidden] {
  display: none;
}
.rf-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}
.rf-search-overlay__inner {
  position: relative;
  z-index: 1;
  width: min(640px, 90vw);
}
.rf-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.25rem;
}
.rf-search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: inherit;
  padding: 0.75rem 0;
  outline: none;
  caret-color: var(--accent);
}
.rf-search-overlay__input::-webkit-search-cancel-button, .rf-search-overlay__input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.rf-search-overlay__input::-moz-placeholder {
  color: var(--rf-text-on-dark, #afb6bf);
}
.rf-search-overlay__input::placeholder {
  color: var(--rf-text-on-dark, #afb6bf);
}
.rf-search-overlay__submit {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  transition: opacity 0.15s ease;
}
.rf-search-overlay__submit:hover {
  opacity: 0.75;
}
.rf-search-overlay__submit svg {
  width: 2rem;
  height: 2rem;
}
.rf-search-overlay__submit svg path {
  fill: var(--accent);
}
.rf-search-overlay__close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--rf-text-on-dark, #afb6bf);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}
.rf-search-overlay__close:hover {
  color: var(--base-3);
}
.rf-search-overlay__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

body.rf-search-open {
  overflow: hidden;
}

.rf-video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rf-video-card__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--rf-page-bg-alt);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 4px;
  cursor: pointer;
}
.rf-video-card__trigger:is(:hover, :focus-visible) {
  border-color: var(--rf-border-hover);
}
.rf-video-card__trigger:is(:hover, :focus-visible) .rf-video-card__play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.06);
}
.rf-video-card--short .rf-video-card__trigger {
  aspect-ratio: 9/16;
  max-width: 360px;
}
.rf-video-card__poster {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rf-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, transform 0.2s ease;
}
.rf-video-card__play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}
.rf-video-card__title {
  margin: 0;
  color: var(--rf-heading);
  font-weight: 600;
}
.rf-video-card__placeholder {
  padding: 20px;
  font-size: 13px;
  color: var(--rf-muted);
  border: 1px dashed var(--rf-border-subtle);
}

body.home .rf-video-card__trigger {
  aspect-ratio: 10/11;
}
body.home .rf-video-card--short .rf-video-card__trigger {
  max-width: none;
}

.rf-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-video-overlay[hidden] {
  display: none;
}
.rf-video-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.rf-video-overlay__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: min(1100px, 92vw);
}
.rf-video-overlay__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.rf-video-overlay--short .rf-video-overlay__frame {
  width: auto;
  height: min(85vh, 780px);
  aspect-ratio: 9/16;
}
.rf-video-overlay__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.rf-video-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  padding: 8px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.rf-video-overlay__close svg {
  width: 28px;
  height: 28px;
}

body.rf-video-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .rf-footer-accordion__trigger {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .rf-footer-accordion__trigger .gb-shape svg {
    transition: transform 0.25s ease;
  }
  .rf-footer-accordion__body {
    display: none;
  }
  .rf-footer-accordion.is-open .rf-footer-accordion__trigger .gb-shape svg {
    transform: rotate(180deg);
  }
  .rf-footer-accordion.is-open .rf-footer-accordion__body {
    display: flex;
  }
}
.rf-loop-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rf-loop-item {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 14px;
  background-color: var(--base);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
body.rf-dark-mode .rf-loop-item {
  background-color: var(--rf-surface);
}
@media (max-width: 640px) {
  .rf-loop-item {
    flex-direction: column;
  }
}
.rf-loop-item:hover {
  border-color: var(--rf-border-hover);
}
.rf-loop-item__image {
  position: relative;
  flex: 0 0 200px;
  width: 200px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--base-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .rf-loop-item__image {
    width: 100%;
    flex: none;
    aspect-ratio: 16/9;
  }
}
.rf-loop-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.rf-loop-item__image .rf-label--badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.rf-loop-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  gap: 7px;
}
.rf-loop-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rf-loop-item__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--contrast-3);
  background-color: var(--base-2);
  padding: 5px 9px;
  border-radius: 4px;
  line-height: 1;
}
body.rf-dark-mode .rf-loop-item__meta-item {
  color: var(--rf-muted);
}
.rf-loop-item__meta-item i {
  font-size: 10px;
}
.rf-loop-item__meta-item--date {
  background-color: color-mix(in srgb, var(--rf-label-card) 20%, transparent);
  color: var(--rf-label-card);
}
body.rf-dark-mode .rf-loop-item__meta-item--date {
  color: var(--rf-label-card);
}
.rf-loop-item__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--gp-font--oswald);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  background-color: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
.rf-loop-item__title {
  font-family: var(--gp-font--oswald);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--contrast);
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.rf-dark-mode .rf-loop-item__title {
  color: var(--rf-heading);
}
.rf-loop-item__excerpt {
  font-family: var(--gp-font--varela-round);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--contrast-2);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rf-loop-item__action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-left: 4px;
}
@media (max-width: 640px) {
  .rf-loop-item__action {
    padding-left: 0;
    padding-top: 4px;
  }
}
.rf-loop-item__action .gbp-button--primary {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .rf-loop-item__action .gbp-button--primary {
    width: 100%;
    justify-content: center;
  }
}

.rf-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 36px;
}
.rf-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-family: var(--gp-font--oswald);
  font-size: 13px;
  font-weight: 600;
  color: var(--contrast-2);
  background-color: var(--base);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.rf-pagination .page-numbers:hover {
  border-color: var(--rf-border-hover);
}
.rf-pagination .page-numbers.current {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--base-3);
  cursor: default;
  pointer-events: none;
}
.rf-pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
  color: var(--contrast-3);
  cursor: default;
}
.rf-pagination .page-numbers.prev, .rf-pagination .page-numbers.next {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 14px;
}

.rf-post-product-card {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
  background-color: var(--rf-surface);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 10px;
}
.rf-post-product-card__thumb {
  position: relative;
  flex: 0 0 110px;
  align-self: flex-start;
  width: 110px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--base-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-post-product-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
  display: block;
}
.rf-post-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-family: var(--gp-font--oswald);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--base-3);
  background-color: var(--rf-label-card);
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
.rf-post-product-card__body {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.rf-post-product-card__eyebrow {
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rf-label-card);
}
.rf-post-product-card__title {
  font-family: var(--gp-font--oswald);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--rf-heading);
  line-height: 1.2;
  margin: 0;
}
.rf-post-product-card__description {
  font-family: var(--gp-font--varela-round);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--rf-body);
  margin: 0;
}
.rf-post-product-card__retailer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gp-font--oswald);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rf-muted);
  margin-top: 2px;
}
.rf-post-product-card__retailer .gb-shape svg {
  width: 12px;
  height: 12px;
}
.rf-post-product-card__aside {
  flex: 0 0 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--rf-border-subtle);
}
.rf-post-product-card__price {
  font-family: var(--gp-font--varela-round);
  font-size: 22px;
  font-weight: 400;
  color: var(--rf-price);
  line-height: 1;
  white-space: nowrap;
}
.rf-post-product-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.rf-post-product-card__actions .gbp-button {
  flex: 1 1 140px;
  justify-content: center;
  white-space: normal;
  text-align: center;
}
@media (min-width: 641px) {
  .rf-post-product-card {
    flex-wrap: nowrap;
  }
  .rf-post-product-card__aside {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding: 0 0 0 20px;
    margin: 0;
    border-top: none;
    border-left: 1px solid var(--rf-border-subtle);
  }
  .rf-post-product-card__price {
    font-size: 26px;
  }
  .rf-post-product-card__actions {
    flex-direction: column;
    width: 180px;
  }
  .rf-post-product-card__actions .gbp-button {
    flex: 0 0 auto;
    width: 100%;
  }
}

.gbp-section__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--gb-container-width, 1200px);
}
@media (max-width: 767px) {
  .gbp-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.rf-section {
  background-color: var(--rf-page-bg);
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--rf-border-subtle);
}
.rf-section--alt {
  background-color: var(--rf-page-bg-alt);
}
.rf-section--dark :is(h1, h2, h3, h4) {
  color: var(--base-3);
}
.rf-section--dark p {
  color: var(--rf-text-body-on-dark);
}
.rf-section--dark .gbp-button--secondary {
  color: var(--base-3);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}
.rf-section--dark .gbp-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6);
}

.rf-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .rf-section-header {
    flex-direction: column;
  }
}
.rf-section-header .rf-section-headline {
  margin-bottom: 0;
}

.rf-section-headline {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 55px;
  font-family: var(--gp-font--eurydice);
}
.rf-section-headline h2 {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}
.rf-section-headline p {
  margin: 0;
  max-width: 560px;
  font-family: var(--gp-font--varela-round);
  font-weight: 400;
  line-height: 1.6;
  color: var(--rf-body);
}
.rf-section-headline--bordered {
  padding-left: 25px;
  border-left: 4px solid var(--rf-price);
}
.rf-section-headline--post h2 {
  font-size: 2.5rem;
}

.rf-eyebrow {
  display: block;
  margin: 0;
  font-family: var(--gp-font--oswald);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}

.rf-section-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rf-section-image > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.rf-post-author {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
.rf-post-author__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--rf-page-bg);
  border: 1px solid var(--rf-border-subtle);
  border-radius: 50%;
  color: var(--rf-muted);
  font-size: 1.1rem;
}
.rf-post-author__info {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 5px;
       column-gap: 5px;
  row-gap: 5px;
}
.rf-post-author__level {
  font-family: var(--gp-font--oswald);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rf-label-card);
  line-height: 1;
}
.rf-post-author__name {
  font-family: var(--gp-font--oswald);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rf-heading);
  line-height: 1;
}

.rf-hero .rf-post-author__name {
  color: var(--base-3);
}

.rf-label {
  font-family: var(--gp-font--oswald);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}
.rf-label--badge {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--base-3);
}
.rf-label--badge.rf-label--contrast {
  background-color: var(--contrast);
}
.rf-label--badge.rf-label--muted {
  background-color: var(--rf-label-card);
  color: var(--base-3);
}
.rf-label--badge.rf-label--accent {
  background-color: var(--accent);
  color: var(--base-3);
}
.rf-label--large {
  font-size: 0.8rem;
  padding: 10px 12px;
}
.rf-label--contrast {
  color: var(--base-3);
}
.rf-label--muted {
  color: var(--rf-label-card);
}
.rf-label--accent {
  color: var(--accent);
}

.rf-header {
  position: relative;
  z-index: 1000;
  padding: 16px;
}
.rf-header.gb-is-sticky {
  top: var(--site-admin-offset, 0);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--rf-bg-darker);
}
.rf-header__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.rf-header img {
  display: block;
  height: 45px;
  width: auto;
  max-width: 100%;
}
.rf-header .gb-text:not(.gbp-button) {
  font-family: var(--gp-font--mission-gt-r-condensed);
  font-size: 2.5rem;
}
.rf-header .gb-text:not(.gbp-button) a {
  color: var(--base-3);
}
.rf-header .gb-navigation {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  max-width: min(var(--gb-container-width) + 40px, 100% - 60px);
  margin-left: auto;
  margin-right: auto;
  color: var(--base-3);
  font-family: var(--gp-font--anton);
}
@media (max-width: 767px) {
  .rf-header .gb-navigation {
    max-width: var(--gb-container-width);
    justify-content: space-between;
  }
}
.rf-header .gb-menu-toggle {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  z-index: 2;
  padding: 10px;
  background-color: var(--rf-bg-darker);
  color: var(--base-3);
}
.rf-header .gb-menu-toggle svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.rf-header .gb-menu-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}
.rf-header .gb-menu-container.gb-menu-container--mobile {
  position: fixed;
  top: var(--site-admin-offset, 0);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 2rem;
  padding-bottom: 60px;
  background-color: var(--rf-bg-darker);
  color: var(--base-3);
}
@media (max-width: 767px) {
  .rf-header .gb-menu-container.gb-menu-container--mobile {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.rf-header .gb-menu-container.gb-menu-container--mobile .gb-menu {
  flex-direction: column;
  width: 100%;
  flex-grow: unset;
}
.rf-header .gb-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.rf-header .gb-menu-item {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.rf-header .gb-menu-item:is(:hover, :active, .current-menu-item, .is-active) .gb-menu-link {
  color: var(--accent);
}
.rf-header .gb-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-family: var(--gp-font--oswald);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.45rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--base-3);
  transition: text-shadow 0.15s ease;
}
.rf-header .gb-sub-menu {
  right: 0;
  width: 200px;
  z-index: 100;
  margin: 0;
  padding: 0;
}
.rf-header .gb-sub-menu .gb-sub-menu {
  top: 0;
  right: 100%;
}
.rf-header .gb-sub-menu .menu-item {
  background-color: var(--rf-bg-darker);
  color: var(--base-3);
}
.rf-header__actions {
  display: flex;
  align-items: center;
  padding-left: 15px;
}
.rf-header .rf-search-trigger.gbp-button .gb-shape svg {
  width: 1.5rem;
  height: 1.5rem;
}
.rf-header .rf-search-trigger.gbp-button .gb-shape svg path {
  fill: var(--base-3);
}
.rf-header .gbp-button--primary .gb-shape svg {
  width: 1em;
  height: 1em;
}
.rf-header .gbp-button--primary:is(:active), .rf-header .gbp-button--primary:hover {
  background-color: var(--base-3);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}

.rf-hero {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: -100px;
  padding-top: 100px;
  padding-bottom: 0;
}
.rf-hero:not(.rf-section) {
  background: linear-gradient(38deg, rgba(25, 29, 36, 0.9) 0%, rgba(25, 29, 36, 0.75) 51%, rgba(25, 29, 36, 0.25) 100%), var(--inline-bg-image) bottom/cover no-repeat !important;
  background-blend-mode: darken, normal !important;
}
.rf-hero .gbp-section__inner {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .rf-hero .gbp-section__inner {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.rf-hero .rf-label {
  margin-bottom: 20px;
}
.rf-hero h1 {
  font-size: 4.4rem;
}
@media (max-width: 767px) {
  .rf-hero h1 {
    font-size: 3.4rem;
  }
}
.rf-hero__actions {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
}
@media (max-width: 767px) {
  .rf-hero__actions {
    flex-direction: column;
    row-gap: 18px;
  }
}

body.home .rf-hero {
  min-height: 65vh;
}
body.home .rf-hero:not(.rf-section) {
  background-position: top !important;
}
body.home .rf-hero .gbp-section__inner {
  margin-top: 140px;
  margin-bottom: 140px;
}
@media (max-width: 767px) {
  body.home .rf-hero .gbp-section__inner {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

body.rf-hero-pos-top .rf-hero:not(.rf-section) {
  background-position: top !important;
}

body.rf-hero-pos-center .rf-hero:not(.rf-section) {
  background-position: center !important;
}

body.rf-hero-pos-bottom .rf-hero:not(.rf-section) {
  background-position: bottom !important;
}

.rf-theme-toggle {
  position: fixed;
  top: calc(25px + var(--site-admin-offset, 0));
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--rf-border-subtle);
  border-right: none;
  border-radius: 6px 0 0 6px;
  background-color: var(--rf-surface);
  color: var(--rf-heading);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.rf-theme-toggle:hover {
  background-color: var(--rf-page-bg-alt);
}
.rf-theme-toggle__icon {
  line-height: 1rem;
}
.rf-theme-toggle svg {
  width: 20px;
  height: 20px;
}
.rf-theme-toggle__icon--sun {
  display: none;
}
@media (max-width: 767px) {
  .rf-theme-toggle {
    position: absolute;
    top: calc(98px + var(--site-admin-offset, 0));
    right: 0;
    transform: none;
    border-radius: 6px;
    border-right: 1px solid var(--rf-border-subtle);
  }
}

body.rf-dark-mode .rf-theme-toggle__icon--sun {
  display: flex;
}
body.rf-dark-mode .rf-theme-toggle__icon--moon {
  display: none;
}

.gbp-button {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--gp-font--oswald);
  font-size: 0.9rem;
  font-weight: normal;
  justify-content: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px 20px;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.gbp-button:is(:hover) .gb-shape svg {
  transform: translate3d(2px, 0, 0);
}
.gbp-button:is(:hover, :focus) {
  transform: translate3d(0, -1px, 0);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.gbp-button .gb-shape svg {
  transition: transform 0.2s ease;
  width: 0.8em;
  height: 0.8em;
}
.gbp-button .gb-shape svg path {
  fill: currentColor;
}
.gbp-button--large {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 17px 28px;
}
.gbp-button--primary {
  background-color: var(--accent);
  color: var(--base-3);
}
.gbp-button--primary:is(:hover, :focus) {
  background-color: color-mix(in srgb, var(--accent) 80%, black);
  transform: translate3d(0, -1px, 0);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--base-3);
}
.gbp-button--secondary {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.gbp-button--secondary:is(:hover, :focus) {
  color: var(--base-3);
  background-color: var(--accent);
}
.gbp-button--alt {
  background-color: var(--rf-button-alt-bg);
  border-color: var(--rf-border-subtle);
  color: var(--base-3);
  letter-spacing: 0.06em;
}
.gbp-button--alt:is(:active) {
  background-color: #243040;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}
.gbp-button--alt:is(:hover, :focus) {
  background-color: color-mix(in srgb, var(--contrast) 80%, black);
  color: var(--base-3);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--contrast) 35%, transparent);
}
.gbp-button--label {
  background-color: var(--rf-label-card);
  border-color: var(--rf-label-card);
  color: var(--base-3);
}
.gbp-button--label:is(:hover, :focus) {
  background-color: color-mix(in srgb, var(--rf-label-card) 85%, black);
  border-color: color-mix(in srgb, var(--rf-label-card) 85%, black);
  color: var(--base-3);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--rf-label-card) 35%, transparent);
}
.gbp-button--label:is(:active) {
  background-color: color-mix(in srgb, var(--rf-label-card) 75%, black);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}
.gbp-button--ghost {
  background-color: var(--rf-page-bg-alt);
  border-color: var(--rf-border-subtle);
  color: var(--rf-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.gbp-button--ghost:is(:hover, :focus) {
  border-color: var(--rf-border-hover);
  color: var(--rf-heading);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}
.gbp-button--transparent {
  background-color: transparent;
  border-color: var(--rf-border-subtle);
  color: var(--rf-body);
}
.gbp-button--transparent:is(:hover, :focus) {
  color: var(--rf-heading);
  border-color: var(--rf-heading);
}

.gbp-button-link {
  cursor: pointer;
  font-family: var(--gp-font--oswald);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rf-btn--link-arrow {
  align-items: center;
  color: var(--accent);
  -moz-column-gap: 6px;
       column-gap: 6px;
  display: inline-flex;
  font-family: var(--gp-font--oswald);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  row-gap: 6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}
.rf-btn--link-arrow:hover {
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
.rf-btn--link-arrow:is(:hover) .gb-shape svg {
  transform: translate3d(2px, 0, 0);
}
.rf-btn--link-arrow .gb-shape svg {
  transition: transform 0.2s ease;
}

.rf-footer {
  background-color: var(--contrast);
  padding-top: 45px;
  padding-bottom: 25px;
}
body.rf-dark-mode .rf-footer {
  background-color: var(--rf-bg-darker);
}

.rf-footer__columns {
  display: grid;
  grid-template-columns: 3fr 1fr 1.5fr;
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 32px;
}
.rf-footer__columns :first-child {
  max-width: 420px;
}
@media (max-width: 767px) {
  .rf-footer__columns {
    grid-template-columns: 1fr;
  }
}

.rf-footer__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.rf-footer__brand img {
  width: 45px;
  height: 45px;
}
.rf-footer__brand .gb-text {
  color: var(--base-3);
}

.gbp-footer p.gb-text, .gbp-footer a {
  color: var(--rf-text-on-dark);
  font-size: 15px;
}

.rf-footer__social {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.rf-footer__social a {
  color: var(--rf-text-on-dark);
}
.rf-footer__social svg {
  width: 20px;
  height: 20px;
}

.rf-footer-accordion__trigger .gb-text {
  color: var(--base-3);
  font-size: 19px;
  font-weight: 600;
}
.rf-footer-accordion__body {
  color: var(--rf-text-on-dark);
  font-size: 15px;
}
@media (min-width: 768px) {
  .rf-footer-accordion__body {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
  }
}

.rf-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rf-border-on-dark);
}
.rf-footer__bottom .gb-text {
  color: var(--rf-text-on-dark);
  font-size: 13px;
}

.gbp-footer__link {
  color: var(--rf-text-on-dark);
}

.rf-block-quote::first-letter {
  font-family: var(--gp-font--oswald);
  font-size: 3em;
  font-weight: 700;
  color: var(--accent);
  line-height: 0.75;
  float: left;
  margin-right: 12px;
  margin-bottom: 8px;
}

.rf-filter-tabs {
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  display: flex;
  flex-shrink: 0;
  row-gap: 8px;
  flex-wrap: wrap;
}

.wp-block-generateblocks-element.wp-block.gbp-section__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--gb-container-width, 1200px);
}

.wp-block-generateblocks-element.wp-block.rf-hero {
  margin-top: -100px;
}

.wp-block-generateblocks-element.wp-block.rf-section-headline--bordered {
  margin-bottom: 55px;
}

.rf-section-header .wp-block-generateblocks-element.wp-block.rf-section-headline {
  margin-bottom: 0;
}