/* ==========================================================================
   RUSPOST — INICIO (Home)
   ========================================================================== */

/* -------------------------
   0) TOKENS / BASE
------------------------- */
:root {
  --rp-accent: #FFD700;
  --rp-bg: #0a0a0a;
  --rp-surface: #171717;
  --rp-border: #262626;
  --rp-text: #ffffff;
  --rp-muted: #a3a3a3;

  --color-yellow-200: #fff27a;

  --rp-font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --rp-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --rp-text-base: 16px;
  --rp-text-lg: 18px;
  --rp-tracking-tight: -0.04em;
  --rp-tracking-wide: 0.14em;
  --rp-leading-tight: 1.05;
}

html,
body {
  background: var(--rp-bg);
  color: var(--rp-text);
}

body {
  font-family: var(--rp-font-sans);
  font-size: var(--rp-text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--rp-accent);
}

/* -------------------------
   1) LAYOUT HELPERS
------------------------- */
.rp-home {
  background: var(--rp-bg);
  color: var(--rp-text);
}

.rp-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rp-home svg.rp-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-block;
}

.rp-home .rp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 540px) {
  .rp-home .rp-container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.rp-home .rp-dot {
  width: 8px;
  height: 8px;
  background: var(--rp-accent);
  border-radius: 999px;
  display: inline-block;
}

/* -------------------------
   2) BUTTONS
------------------------- */
.rp-home .rp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid var(--rp-border);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  user-select: none;
}

.rp-home .rp-btn:active {
  transform: translateY(1px);
}

.rp-home .rp-btn-primary {
  background: var(--rp-accent);
  border-color: var(--rp-accent);
  color: #0a0a0a;
}

.rp-home .rp-btn-primary:hover {
  filter: brightness(.92);
  color: #0a0a0a;
}

.rp-home .rp-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
  color: #ffffff;
}

.rp-home .rp-btn-outline:hover {
  background: rgba(255, 255, 255, .08);
}

.rp-home .rp-btn-dark {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}

.rp-home .rp-btn-dark:hover {
  background: #151515;
  border-color: #151515;
}

.rp-home .rp-btn-light {
  background: transparent;
  border-color: rgba(0, 0, 0, .18);
  color: #0a0a0a;
}

.rp-home .rp-btn-light:hover {
  background: rgba(255, 255, 255, .7);
}


.rp-home .rp-hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 0 0 64px;
}

@media (max-width: 820px) {
  .rp-home .rp-hero {
    height: auto;
    min-height: 560px;
    padding: 64px 0 84px;
    align-items: center;
  }
}

.rp-home .rp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rp-home .rp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(.55) contrast(1.15);
}

.rp-home .rp-hero-overlay {
  position: absolute;
  inset: 0;
}

.rp-home .rp-hero-content {
  position: relative;
  z-index: 2;
}

.rp-home .rp-hero .rp-container.rp-hero-content {
  padding-left: 16px;
  padding-right: 24px;
}

@media (max-width: 540px) {
  .rp-home .rp-hero .rp-container.rp-hero-content {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.rp-home .rp-hero-inner {
  max-width: 760px;
  text-align: left;
  margin-bottom: 18px;
}

@media (max-width: 820px) {
  .rp-home .rp-hero-inner {
    text-align: center;
    margin: 0 auto;
  }
}

.rp-home .rp-badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255, 215, 0, .28);
  border-radius: 4px;
  color: var(--rp-accent);
  background: rgba(10, 10, 10, .55);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}

.rp-home .rp-hero-title {
  margin: 0 0 14px 0;
  font-weight: 900;
  letter-spacing: var(--rp-tracking-tight);
  line-height: 1.04;
  font-size: clamp(2.1rem, 3.6vw, 3.7rem);
  color: var(--rp-text);
  font-family: var(--rp-font-sans);
}

.rp-home .rp-hero-accent,
.rp-home .rp-hero-title-accent {
  display: inline-block;
  color: var(--rp-accent);
}

@supports (-webkit-background-clip: text) or (background-clip: text) {

  .rp-home .rp-hero-accent,
  .rp-home .rp-hero-title-accent {
    background-image: linear-gradient(90deg, #FFD700, var(--color-yellow-200));
    background-repeat: no-repeat;
    background-size: 100% 100%;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.rp-home .rp-hero-desc {
  margin: 0 0 22px 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.55;
  max-width: 58ch;
  font-weight: 300;
}

@media (max-width: 820px) {
  .rp-home .rp-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.rp-home .rp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .rp-home .rp-hero-actions {
    justify-content: center;
  }
}

.rp-home .rp-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  gap: 8px;
  justify-items: center;
  opacity: .85;
}

@media (max-width: 820px) {
  .rp-home .rp-scroll {
    display: none;
  }
}

.rp-home .rp-scroll-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.rp-home .rp-scroll-track {
  width: 1px;
  height: 44px;
  background: var(--rp-border);
  position: relative;
  overflow: hidden;
}

.rp-home .rp-scroll-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--rp-accent);
  animation: rpScroll 1.5s linear infinite;
}

@keyframes rpScroll {
  0% {
    top: -60%;
  }

  100% {
    top: 110%;
  }
}

/* -------------------------
   4) SHARED SECTION
------------------------- */
.rp-home .rp-capsules,
.rp-home .rp-programs,
.rp-home .rp-highlight,
.rp-home .rp-blog {
  padding: 80px 0;
}

@media (max-width: 820px) {

  .rp-home .rp-capsules,
  .rp-home .rp-programs,
  .rp-home .rp-highlight,
  .rp-home .rp-blog {
    padding: 64px 0;
  }
}

.rp-home .rp-section-title {
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  letter-spacing: -0.02em;
  font-family: var(--rp-font-sans);
  color: var(--rp-text);
}

.rp-home .rp-section-sub {
  margin: 0;
  color: var(--rp-muted);
  font-weight: 300;
  font-size: 15px;
}

/* -------------------------
   5) CAPSULES
------------------------- */
.rp-home .rp-capsules {
  background: linear-gradient(180deg, #101010 0%, #171717 100%);
  border-bottom: 1px solid var(--rp-border);
}

.rp-home .rp-capsules-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.rp-home .rp-capsules-controls {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.rp-home .rp-iconbtn {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  border: 0;
  background: #fff;
  color: #0a0a0a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .12s ease, filter .15s ease;
}

.rp-home .rp-iconbtn:hover {
  filter: brightness(.92);
}

.rp-home .rp-iconbtn:active {
  transform: translateY(1px);
}

.rp-home .rp-iconbtn .rp-ico {
  width: 16px;
  height: 16px;
}

.rp-home .rp-capsules-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rp-home .rp-capsules-track::-webkit-scrollbar {
  display: none;
}

.rp-home .rp-capsule {
  flex: 0 0 auto;
  width: 240px;
  height: 410px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0b0b0b;
  scroll-snap-align: start;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

@media (max-width: 420px) {
  .rp-home .rp-capsule {
    width: 220px;
    height: 392px;
  }
}

.rp-home .rp-capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: transform .7s ease, opacity .25s ease;
}

.rp-home .rp-capsule:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.rp-home .rp-capsule-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  z-index: 3;
  color: rgba(255, 255, 255, .95);
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
}

.rp-home .rp-capsule-icon .rp-ico {
  width: 15px;
  height: 15px;
}

.rp-home .rp-capsule-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, .08) 45%,
      rgba(0, 0, 0, .70) 78%,
      rgba(0, 0, 0, .86) 100%);
}

.rp-home .rp-capsule-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px 18px;
  z-index: 4;
}

.rp-home .rp-capsule-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 8px;
  line-height: 1;
}

.rp-home .rp-capsule-meta h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}

.rp-home .rp-capsule:hover .rp-capsule-meta h3 {
  color: var(--rp-accent);
}

.rp-home .rp-capsule-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--rp-accent);
  border-radius: 999px;
}

/* -------------------------
   6) PROGRAMS
------------------------- */
.rp-home .rp-programs {
  background: transparent;
}

.rp-home .rp-programs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  margin-bottom: 22px;
}

@media (max-width: 640px) {
  .rp-home .rp-programs-head {
    align-items: flex-start;
    gap: 12px;
  }
}

.rp-home .rp-programs-kicker {
  color: var(--rp-accent);
  font-family: var(--rp-font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: .9;
}

.rp-home .rp-programs-head .rp-section-title {
  margin: 0;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: var(--rp-tracking-tight);
  line-height: 1.02;
}

.rp-home .rp-programs-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, .60);
  padding: 6px 0;
  transition: color .15s ease;
}

.rp-home .rp-programs-link:hover {
  color: rgba(255, 255, 255, .92);
}

.rp-home .rp-programs-grid {
  display: grid;
  gap: 0;
  background: transparent;
  border: 0;
}

@media (min-width: 900px) {
  .rp-home .rp-programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .rp-home .rp-programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .rp-home .rp-programs-grid {
    grid-template-columns: 1fr;
  }
}

.rp-home .rp-program {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  aspect-ratio: 16 / 9;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

@media (min-width: 900px) {
  .rp-home .rp-program {
    aspect-ratio: 4 / 3;
  }
}

.rp-home .rp-program img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(.78);
  transform: scale(1.02);
  transition: transform .65s ease, filter .35s ease, opacity .35s ease;
  opacity: .95;
}

.rp-home .rp-program-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .22) 42%,
      rgba(0, 0, 0, .70) 100%);
  transition: background .35s ease;
}

.rp-home .rp-program-content {
  position: absolute;
  inset: 0;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.rp-home .rp-program-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

@media (min-width: 900px) {
  .rp-home .rp-program-title {
    font-size: 14px;
  }
}

.rp-home .rp-program-cta {
  display: none;
}

.rp-home .rp-program:hover img {
  transform: scale(1.06);
  filter: grayscale(100%) contrast(1.08) brightness(.68);
}

.rp-home .rp-program:hover .rp-program-overlay {
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .45) 0%,
      rgba(0, 0, 0, .30) 42%,
      rgba(0, 0, 0, .78) 100%);
}

/* -------------------------
   7) HIGHLIGHT
------------------------- */
.rp-home .rp-highlight {
  background: #ffffff;
  color: #0a0a0a;
}

.rp-home .rp-highlight a {
  color: #0a0a0a;
}

.rp-home .rp-highlight a:hover {
  color: #b89200;
}

.rp-home .rp-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

@media (min-width: 980px) {
  .rp-home .rp-highlight-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
  }
}

.rp-home .rp-highlight-media {
  position: relative;
  max-width: 520px;
}

@media (min-width: 980px) {
  .rp-home .rp-highlight-media {
    max-width: none;
  }
}

.rp-home .rp-highlight-border {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--rp-accent);
  border-radius: 2px;
  z-index: 0;
}

.rp-home .rp-highlight-img {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .20);
}

.rp-home .rp-highlight-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .7s ease;
}

.rp-home .rp-highlight-media:hover .rp-highlight-img img {
  transform: scale(1.03);
}

.rp-home .rp-highlight-ep {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: var(--rp-accent);
  color: #0a0a0a;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 2px;
}

.rp-home .rp-highlight-copy {
  max-width: 520px;
}

.rp-home .rp-highlight-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, .55);
  margin-bottom: 14px;
}

.rp-home .rp-highlight-kicker:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--rp-accent);
}

.rp-home .rp-highlight-title {
  margin: 0 0 18px 0;
  font-size: clamp(2.1rem, 3.2vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.rp-home .rp-highlight-mark {
  background: var(--rp-accent);
  padding: 2px 10px 3px;
  border-radius: 2px;
  display: inline-block;
}

.rp-home .rp-highlight-text {
  margin: 0 0 22px 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(10, 10, 10, .62);
  font-weight: 400;
  max-width: 62ch;
}

.rp-home .rp-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.rp-home .rp-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .06em;
  border-bottom: 2px solid #0a0a0a;
  padding-bottom: 4px;
  transition: color .15s ease, border-color .15s ease;
}

.rp-home .rp-highlight-link:hover {
  color: #b89200;
  border-color: #b89200;
}

/* -------------------------
   8) BLOG
------------------------- */
.rp-home .rp-blog {
  background: #f5f5f5;
  color: #0a0a0a;
}

.rp-home .rp-blog a {
  color: #0a0a0a;
}

.rp-home .rp-blog a:hover {
  color: #E5C100;
}

.rp-home .rp-blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
  margin-bottom: 32px;
}

.rp-home .rp-blog-title {
  margin: 0;
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: var(--rp-tracking-tight);
}

.rp-home .rp-blog-all {
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

@media (min-width: 900px) {
  .rp-home .rp-blog-all {
    display: inline-flex;
  }
}

.rp-home .rp-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

@media (min-width: 900px) {
  .rp-home .rp-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rp-home .rp-post {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rp-home .rp-post-img {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #ddd;
}

.rp-home .rp-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform .7s ease, filter .25s ease;
}

.rp-home .rp-post:hover .rp-post-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.rp-home .rp-post-cat {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--rp-accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 10px;
  border-radius: 2px;
}

.rp-home .rp-post-date {
  font-family: var(--rp-font-mono);
  font-size: 12px;
  color: rgba(10, 10, 10, .55);
  border-left: 2px solid var(--rp-accent);
  padding-left: 10px;
  margin-bottom: 10px;
}

.rp-home .rp-post-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.rp-home .rp-post-title a {
  color: #0a0a0a;
}

.rp-home .rp-post-excerpt {
  margin: 0 0 12px 0;
  color: rgba(10, 10, 10, .62);
  font-weight: 300;
  line-height: 1.6;
}

.rp-home .rp-post-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #0a0a0a;
}

.rp-home .rp-blog-mobilecta {
  margin-top: 28px;
  display: grid;
  justify-items: center;
}

@media (min-width: 900px) {
  .rp-home .rp-blog-mobilecta {
    display: none;
  }
}

/* ==========================================================================
   MINI REPRODUCTOR
   ========================================================================== */
.rp-mini-player {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(380px, calc(100vw - 32px));
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 12px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.rp-mini-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  line-height: 28px;
  font-size: 18px;
}

.rp-mini-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

#rp-mini-cover {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, .08);
}

.rp-mini-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.rp-mini-open {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.rp-mini-open:hover {
  color: #fff;
}

.rp-mini-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  color: rgba(255, 255, 255, .85);
}

.rp-mini-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}