@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

.rm-editorial {
  background: #f8f6f3;
  padding: 80px 20px 60px;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow: hidden;
}

.rm-editorial * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Header --- */
.rm-header {
  text-align: center;
  margin-bottom: 48px;
}

.rm-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  margin-bottom: 16px;
  display: block;
}

.rm-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.25;
}

.rm-header-line {
  width: 40px;
  height: 2px;
  background: #c9a87c;
  margin: 0 auto;
}

/* --- Body Text --- */
.rm-text-block {
  max-width: 850px;
  margin: 0 auto;
}

.rm-text-block p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.rm-text-block p:last-child {
  margin-bottom: 0;
}

/* --- Image Break --- */
.rm-image-break {
  max-width: 850px;
  margin: 40px auto;
}

.rm-image-break img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* --- Pull Quote / Review --- */
.rm-pull-quote {
  text-align: center;
  max-width: 640px;
  margin: 56px auto;
  padding: 0 20px;
}

.rm-pull-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: #c9a87c;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  user-select: none;
}

.rm-pull-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 20px;
}

.rm-pull-quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rm-pull-quote-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.rm-pull-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.rm-pull-quote-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.rm-pull-quote-stars {
  font-size: 14px;
  color: #fbbc04;
  letter-spacing: 2px;
}

.rm-pull-quote-source {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
}

.rm-pull-quote-divider {
  color: #ccc;
  font-size: 14px;
}

/* --- Editorial Link --- */
.rm-editorial-link {
  text-align: center;
  margin-top: 36px;
}

.rm-editorial-link a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #c9a87c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rm-editorial-link a:hover {
  color: #b89568;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .rm-editorial {
    padding: 48px 0 40px;
  }

  .rm-header {
    padding: 0 20px;
    margin-bottom: 36px;
  }

  .rm-header h3 {
    font-size: 26px;
  }

  .rm-text-block {
    max-width: 100%;
    padding: 0 20px;
  }

  .rm-text-block p {
    font-size: 16px;
  }

  .rm-image-break {
    margin: 40px auto;
    padding: 0 16px;
  }

  .rm-pull-quote {
    margin: 44px auto;
  }

  .rm-pull-quote-mark {
    font-size: 48px;
  }

  .rm-pull-quote-text {
    font-size: 19px;
  }

  .rm-editorial-link {
    padding: 0 20px;
  }
}
/* ============================
   DARK VARIANT
   ============================ */

/* --- Separator Label --- */
.rm-version-separator {
  text-align: center;
  padding: 60px 20px 20px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #999;
}

.rm-version-separator span {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* --- Dark section overrides --- */
.rm-editorial.rm-dark {
  background: #232B31;
}

.rm-editorial.rm-dark .rm-header h3 {
  color: #fff;
}

.rm-editorial.rm-dark .rm-text-block p {
  color: #d0d0d0;
}

.rm-editorial.rm-dark .rm-image-break img {
  box-shadow: none;
}

.rm-editorial.rm-dark .rm-pull-quote-mark {
  color: #c9a87c;
  opacity: 0.3;
}

.rm-editorial.rm-dark .rm-pull-quote-text {
  color: #e8e8e8;
}

.rm-editorial.rm-dark .rm-pull-quote-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ddd;
}

.rm-editorial.rm-dark .rm-pull-quote-source {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.5px;
}

.rm-editorial.rm-dark .rm-pull-quote-stars {
  font-size: 14px;
  color: #fbbc04;
  letter-spacing: 2px;
}

.rm-editorial.rm-dark .rm-pull-quote-divider {
  color: #555;
  font-size: 14px;
}

/* ============================
   MEET RADINA - Magazine Profile
   ============================ */

.rm-profile {
  background: linear-gradient(170deg, #f5f0eb 0%, #ede5db 100%);
  padding: 80px 20px 70px;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow: hidden;
}

.rm-profile * {
  box-sizing: border-box;
}

/* --- Hero: Photo + Intro side by side --- */
.rm-profile-hero {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  max-width: 1060px;
  margin: 0 auto 60px;
}

/* Photo column */
.rm-profile-photo-col {
  flex: 0 0 44%;
  max-width: 44%;
}

.rm-profile-photo-frame {
  position: relative;
}

.rm-profile-photo-accent {
  position: absolute;
  top: 12px;
  left: -12px;
  right: 12px;
  bottom: -12px;
  border: 2px solid #c9a87c;
  border-radius: 8px;
  z-index: 0;
}

.rm-profile-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Intro column */
.rm-profile-intro-col {
  flex: 1;
  padding-top: 16px;
}

.rm-profile-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: #c9a87c;
  display: block;
  margin-bottom: 14px;
}

.rm-profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 12px 0;
}

.rm-profile-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #888;
  letter-spacing: 0.3px;
  margin: 0 0 24px 0;
}

.rm-profile-intro-line {
  width: 50px;
  height: 2px;
  background: #c9a87c;
  margin-bottom: 28px;
}

.rm-profile-intro-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 22px 0;
}

.rm-profile-intro-text p:last-child {
  margin-bottom: 0;
}

/* --- Body text (centered column) --- */
.rm-profile-body {
  max-width: 850px;
  margin: 0 auto 60px;
}

.rm-profile-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* --- Press / Featured In --- */
.rm-profile-press {
  max-width: 850px;
  margin: 0 auto 30px;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid #c9a87c;
  text-align: center;
}

.rm-profile-press-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  display: block;
  margin-bottom: 20px;
}

.rm-profile-press-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a87c, transparent);
  opacity: 0.4;
}

.rm-profile-press-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 0;
}

.rm-profile-press-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: #555;
  letter-spacing: 0.3px;
}

.rm-profile-press-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a87c;
  flex-shrink: 0;
}

.rm-profile-press-text {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  color: #444;
  line-height: 1.8;
  margin: 28px 0 0;
  text-align: left;
}

/* --- Awards --- */
.rm-profile-awards {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid #c9a87c;
}

.rm-profile-awards-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  display: block;
  margin-bottom: 32px;
}

.rm-profile-awards-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-bottom: 36px;
}

.rm-profile-award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  padding: 0 24px;
}

.rm-profile-award-icon {
  font-size: 20px;
  color: #c9a87c;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.rm-profile-award-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

.rm-profile-award-body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  text-align: center;
  line-height: 1.4;
}

.rm-profile-award-year {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #c9a87c;
  text-align: center;
}

.rm-profile-award-sep {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  background: #c9a87c;
  opacity: 0.3;
  margin: 8px 0;
}

.rm-profile-awards-text {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  color: #444;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* --- Closing paragraph --- */
.rm-profile-closing {
  max-width: 850px;
  margin: 0 auto 40px;
  border-top: 1px solid rgba(201,168,124,0.3);
  padding-top: 48px;
}

.rm-profile-closing p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #333;
  line-height: 1.75;
  margin: 0;
}

/* --- Link --- */
.rm-profile-link {
  text-align: center;
}

.rm-profile-link a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #c9a87c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.rm-profile-link a:hover {
  color: #b89568;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .rm-profile {
    padding: 50px 0 50px;
  }

  .rm-profile-hero {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
    margin-bottom: 44px;
  }

  .rm-profile-photo-col {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .rm-profile-photo-accent {
    top: 8px;
    left: -8px;
    right: 8px;
    bottom: -8px;
  }

  .rm-profile-intro-col {
    padding-top: 0;
  }

  .rm-profile-name {
    font-size: 34px;
  }

  .rm-profile-subtitle {
    font-size: 14px;
  }

  .rm-profile-intro-text p {
    font-size: 16px;
  }

  .rm-profile-body {
    padding: 0 20px;
    margin-bottom: 48px;
  }

  .rm-profile-body p {
    font-size: 16px;
  }

  .rm-profile-press {
    padding: 24px;
    margin: 0 20px 24px;
  }

  .rm-profile-press-names {
    gap: 16px;
  }

  .rm-profile-press-name {
    font-size: 18px;
  }

  .rm-profile-press-text {
    font-size: 16px;
  }

  .rm-profile-awards {
    padding: 24px;
    margin: 0 20px 48px;
  }

  .rm-profile-awards-grid {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .rm-profile-award {
    padding: 20px 0;
    width: 100%;
  }

  .rm-profile-award-sep {
    width: 60%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(to right, transparent, #c9a87c, transparent);
  }

  .rm-profile-awards-text {
    font-size: 16px;
  }

  .rm-profile-closing {
    padding: 40px 20px 0;
    margin-bottom: 32px;
  }

  .rm-profile-closing p {
    font-size: 18px;
  }

  .rm-profile-link {
    padding: 0 20px;
  }
}

/* ============================
   WHY CHOOSE AESTHETE BEAUTY
   ============================ */

.rm-why {
  background: #232B31;
  padding: 90px 20px 80px;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow: hidden;
}

.rm-why * {
  box-sizing: border-box;
}

/* Header */
.rm-why-header {
  text-align: center;
  margin-bottom: 56px;
}

.rm-why-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  display: block;
  margin-bottom: 16px;
}

.rm-why-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px 0;
  line-height: 1.25;
}

.rm-why-header-line {
  width: 40px;
  height: 2px;
  background: #c9a87c;
  margin: 0 auto 24px;
}

.rm-why-intro {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Cards grid */
.rm-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.rm-why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 35px;
  position: relative;
  border-left: 3px solid #c9a87c;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.rm-why-card:hover {
  background: rgba(255,255,255,0.08);
  border-left-color: #d4b88f;
}

.rm-why-card--wide {
  grid-column: 1 / -1;
}

.rm-why-card-number {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 600;
  color: #c9a87c;
  opacity: 0.7;
  display: block;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.rm-why-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.rm-why-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
  margin: 0;
}

/* Bottom CTA */
.rm-why-cta {
  text-align: center;
  margin-top: 52px;
}

.rm-why-cta a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #c9a87c;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.rm-why-cta a:hover {
  color: #d4b88f;
}

/* Mobile */
@media (max-width: 768px) {
  .rm-why {
    padding: 60px 20px 56px;
  }

  .rm-why-header {
    margin-bottom: 40px;
  }

  .rm-why-header h3 {
    font-size: 28px;
  }

  .rm-why-intro {
    font-size: 16px;
  }

  .rm-why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rm-why-card {
    padding: 28px 24px;
  }

  .rm-why-card h4 {
    font-size: 18px;
  }

  .rm-why-card p {
    font-size: 14.5px;
  }
}

/* ============================
   YOUR FIRST VISIT - Timeline
   ============================ */

.rm-visit {
  background: #f8f6f3;
  padding: 90px 20px 80px;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow: hidden;
}

.rm-visit * {
  box-sizing: border-box;
}

.rm-visit-header {
  text-align: center;
  margin-bottom: 48px;
}

.rm-visit-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  display: block;
  margin-bottom: 16px;
}

.rm-visit-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 22px 0;
  line-height: 1.25;
}

.rm-visit-header-line {
  width: 40px;
  height: 2px;
  background: #c9a87c;
  margin: 0 auto;
}

/* Intro */
.rm-visit-intro {
  max-width: 850px;
  margin: 0 auto 56px;
  text-align: center;
}

.rm-visit-intro p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.rm-visit-intro-cue {
  font-family: "Playfair Display", serif !important;
  font-style: italic;
  font-size: 20px !important;
  color: #1a1a1a !important;
  margin-top: 8px !important;
}

/* Timeline */
.rm-visit-timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}

.rm-visit-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, #c9a87c, rgba(201,168,124,0.2));
}

/* Step */
.rm-visit-step {
  position: relative;
  margin-bottom: 48px;
}

.rm-visit-step:last-child {
  margin-bottom: 0;
}

.rm-visit-step-marker {
  position: absolute;
  left: -80px;
  top: 0;
  width: 70px;
  text-align: center;
}

.rm-visit-step-number {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #c9a87c;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.rm-visit-step-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9a87c;
  margin: 0 auto;
  box-shadow: 0 0 0 4px #f8f6f3, 0 0 0 6px rgba(201,168,124,0.3);
}

.rm-visit-step-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.rm-visit-step-content p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 16px 0;
}

.rm-visit-step-content p:last-child {
  margin-bottom: 0;
}

/* Closing */
.rm-visit-closing {
  max-width: 850px;
  margin: 64px auto 0;
  text-align: center;
}

.rm-visit-closing p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 22px;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .rm-visit {
    padding: 60px 20px 56px;
  }

  .rm-visit-header h3 {
    font-size: 28px;
  }

  .rm-visit-intro {
    margin-bottom: 40px;
  }

  .rm-visit-intro p {
    font-size: 16px;
  }

  .rm-visit-timeline {
    padding-left: 60px;
  }

  .rm-visit-timeline::before {
    left: 22px;
  }

  .rm-visit-step-marker {
    left: -60px;
    width: 44px;
  }

  .rm-visit-step-number {
    font-size: 18px;
  }

  .rm-visit-step-dot {
    width: 10px;
    height: 10px;
  }

  .rm-visit-step-content h4 {
    font-size: 19px;
  }

  .rm-visit-step-content p {
    font-size: 15px;
  }

  .rm-visit-closing p {
    font-size: 19px;
  }
}


/* ============================
   NAIL CARE TIPS - Cards
   ============================ */

.rm-care {
  background: #232B31;
  padding: 90px 20px 80px;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow: hidden;
}

.rm-care * {
  box-sizing: border-box;
}

.rm-care-header {
  text-align: center;
  margin-bottom: 52px;
}

.rm-care-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  display: block;
  margin-bottom: 16px;
}

.rm-care-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px 0;
  line-height: 1.25;
}

.rm-care-header-line {
  width: 40px;
  height: 2px;
  background: #c9a87c;
  margin: 0 auto 24px;
}

.rm-care-intro {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards grid */
.rm-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.rm-care-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  transition: background 0.3s ease;
}

.rm-care-card:hover {
  background: rgba(255,255,255,0.07);
}

.rm-care-card-icon {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  color: #c9a87c;
  opacity: 0.7;
  display: block;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.rm-care-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

.rm-care-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
  margin: 0;
}

/* Closing */
.rm-care-closing {
  max-width: 850px;
  margin: 48px auto 0;
  text-align: center;
}

.rm-care-closing p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #999;
  line-height: 1.75;
  margin: 0 0 24px 0;
}

.rm-care-link {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #c9a87c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.rm-care-link:hover {
  color: #d4b88f;
}

/* Mobile */
@media (max-width: 768px) {
  .rm-care {
    padding: 60px 20px 56px;
  }

  .rm-care-header h3 {
    font-size: 28px;
  }

  .rm-care-intro {
    font-size: 16px;
  }

  .rm-care-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rm-care-card {
    padding: 26px 22px;
  }

  .rm-care-card h4 {
    font-size: 17px;
  }

  .rm-care-card p {
    font-size: 14.5px;
  }
}


/* ============================
   FAQ - Expanded Q&A
   ============================ */

.rm-faq {
  background: #f8f6f3;
  padding: 90px 20px 80px;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow: hidden;
}

.rm-faq * {
  box-sizing: border-box;
}

.rm-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.rm-faq-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  display: block;
  margin-bottom: 16px;
}

.rm-faq-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 22px 0;
  line-height: 1.25;
}

.rm-faq-header-line {
  width: 40px;
  height: 2px;
  background: #c9a87c;
  margin: 0 auto;
}

/* FAQ list */
.rm-faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.rm-faq-item {
  padding: 32px 0;
  border-bottom: 1px solid #e8e0d5;
}

.rm-faq-item:first-child {
  padding-top: 0;
}

.rm-faq-item:last-child {
  border-bottom: none;
}

.rm-faq-q-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.rm-faq-q-marker {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #c9a87c;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #c9a87c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  line-height: 1;
}

.rm-faq-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  padding-top: 2px;
}

.rm-faq-item p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
  padding-left: 44px;
}

/* Mobile */
@media (max-width: 768px) {
  .rm-faq {
    padding: 60px 20px 56px;
  }

  .rm-faq-header h3 {
    font-size: 28px;
  }

  .rm-faq-item {
    padding: 24px 0;
  }

  .rm-faq-q-row {
    gap: 12px;
  }

  .rm-faq-q-marker {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .rm-faq-item h4 {
    font-size: 16px;
  }

  .rm-faq-item p {
    font-size: 15px;
    padding-left: 36px;
  }
}


/* ============================
   BOOKING SECTION
   ============================ */

.rm-booking {
  background: #232B31;
  padding: 90px 20px 80px;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow: hidden;
}

.rm-booking * {
  box-sizing: border-box;
}

.rm-booking-header {
  text-align: center;
  margin-bottom: 56px;
}

.rm-booking-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c9a87c;
  display: block;
  margin-bottom: 16px;
}

.rm-booking-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px 0;
  line-height: 1.25;
}

.rm-booking-header-line {
  width: 40px;
  height: 2px;
  background: #c9a87c;
  margin: 0 auto 28px;
}

.rm-booking-intro {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 20px;
  color: #999;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 12px;
}

.rm-booking-intro-sub {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Two columns */
.rm-booking-columns {
  display: flex;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto 56px;
}

.rm-booking-contact,
.rm-booking-hours {
  flex: 1;
}

.rm-booking-contact h4,
.rm-booking-hours h4 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #c9a87c;
  margin: 0 0 24px 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Contact list */
.rm-booking-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rm-booking-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.rm-booking-contact-list li:last-child {
  margin-bottom: 0;
}

.rm-booking-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.rm-booking-contact-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.rm-booking-contact-list a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rm-booking-contact-list a:hover {
  color: #c9a87c;
}

.rm-booking-contact-list span:not(.rm-booking-icon):not(.rm-booking-contact-label) {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #333;
}

/* Book Online button */
.rm-booking-btn {
  display: inline-block;
  background: #c9a87c;
  color: #1a1a1a !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.3s ease;
}

.rm-booking-btn:hover {
  background: #d4b88f;
  color: #1a1a1a !important;
}

/* Hours list */
.rm-booking-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rm-booking-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.rm-booking-hours-list li:last-child {
  border-bottom: none;
}

.rm-booking-day {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ccc;
}

.rm-booking-time {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #aaa;
}

.rm-booking-closed .rm-booking-day,
.rm-booking-closed .rm-booking-time {
  color: #999;
}

.rm-booking-closed .rm-booking-time {
  font-style: italic;
}

/* Map */
.rm-booking-map {
  max-width: 900px;
  margin: 0 auto 32px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.rm-booking-map iframe {
  display: block;
  width: 100%;
  height: 350px;
}

/* Saturday note */
.rm-booking-saturday-note {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #888;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Bottom CTA */
.rm-booking-cta {
  text-align: center;
}

.rm-booking-cta a {
  display: inline-block;
  background: #c9a87c;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.rm-booking-cta a:hover {
  background: #d4b88f;
}

.rm-booking-geo {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #777;
  text-align: center;
  max-width: 650px;
  margin: 24px auto 0;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .rm-booking {
    padding: 60px 20px 56px;
  }

  .rm-booking-header h3 {
    font-size: 28px;
  }

  .rm-booking-intro {
    font-size: 18px;
  }

  .rm-booking-intro-sub {
    font-size: 15px;
  }

  .rm-booking-columns {
    flex-direction: column;
    gap: 40px;
  }

  .rm-booking-map iframe {
    height: 280px;
  }

  .rm-booking-cta a {
    font-size: 14px;
    padding: 14px 32px;
  }
}


/* --- Booking: Redesigned contact items (light bg) --- */
.rm-booking-contact-item {
  display: flex;
  flex-direction: column;
  padding: 16px 0 16px 20px;
  border-left: 2px solid #c9a87c;
  margin-bottom: 20px;
}

.rm-booking-contact-item:last-child {
  margin-bottom: 0;
}

.rm-booking-contact-item-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a87c;
  display: block;
  margin-bottom: 6px;
}

.rm-booking-contact-item a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.rm-booking-contact-item a:hover {
  color: #c9a87c;
}

.rm-booking-contact-item-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin-top: 4px;
}

.rm-booking-contact-item-address {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.rm-booking-book-btn {
  display: inline-block;
  background: #c9a87c;
  color: #1a1a1a !important;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.rm-booking-book-btn:hover {
  background: #d4b88f;
  color: #1a1a1a !important;
}

@media (max-width: 768px) {
  .rm-booking-contact-item {
    padding: 14px 0 14px 16px;
    margin-bottom: 16px;
  }

  .rm-booking-contact-item a {
    font-size: 15px;
  }
}


/* ============================
   SERVICE PAGE TEMPLATE
   ============================ */

/* --- Service page section spacing reset --- */
.rm-service {
  /* Consistent section padding for service pages */
}

/* Light sections on service pages need dark text headings */
.rm-editorial.rm-service:not(.rm-dark) .rm-header h3 {
  color: #1a1a1a;
}

.rm-editorial.rm-service:not(.rm-dark) .rm-text-block p {
  color: #444;
}

/* FAQ on service page: light background variant */
.rm-faq.rm-service {
  background: #f8f6f3;
}

.rm-faq.rm-service .rm-faq-header h3 {
  color: #1a1a1a;
}

.rm-faq.rm-service .rm-faq-item h4 {
  color: #1a1a1a;
}

.rm-faq.rm-service .rm-faq-item p {
  color: #555;
}

.rm-faq.rm-service .rm-faq-item {
  border-bottom-color: #e8e0d5;
}

/* Visit/timeline on service page: dark background variant */
.rm-visit.rm-service {
  background: #232B31;
}

.rm-visit.rm-service .rm-visit-header h3 {
  color: #fff;
}

.rm-visit.rm-service .rm-visit-step-content h4 {
  color: #fff;
}

.rm-visit.rm-service .rm-visit-step-content p {
  color: #aaa;
}

.rm-visit.rm-service .rm-visit-intro p {
  color: #aaa;
}

.rm-visit.rm-service .rm-visit-intro-cue {
  color: #fff !important;
}

.rm-visit.rm-service .rm-visit-closing p {
  color: #fff;
}
/* Image caption style for service pages */
.rm-image-break .rm-image-caption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.5;
}

/* Service page checklist (used in "Is It Right for You?" sections) */
.rm-service-checklist {
  max-width: 850px;
  margin: 0 auto 40px;
}

.rm-service-checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rm-service-checklist li {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #d0d0d0;
  line-height: 1.8;
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: none;
}

.rm-service-checklist li:last-child {
  border-bottom: none;
}

.rm-service-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #c9a87c;
  font-size: 16px;
}

/* Light variant of checklist */
.rm-editorial:not(.rm-dark) .rm-service-checklist li {
  color: #444;
  border-bottom-color: transparent;
}

@media (max-width: 768px) {
  .rm-service-checklist li {
    font-size: 16px;
    padding-left: 28px;
  }
}

/* ============================
   TABLE OF CONTENTS - Desktop Sidebar
   ============================ */

.rm-toc {
  position: fixed;
  left: 20px;
  top: 560px;
  max-width: 170px;
  z-index: 100;
  font-family: 'Inter', sans-serif;
}

.rm-toc-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a87c;
  margin-bottom: 12px;
  font-weight: 600;
}

.rm-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid #ddd;
}

.rm-toc li {
  padding: 0;
  margin: 0;
}

.rm-toc-link {
  display: block;
  padding: 6px 0 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.rm-toc-link:hover {
  color: #c9a87c;
}

.rm-toc-link.active {
  color: #c9a87c;
  border-left-color: #c9a87c;
  font-weight: 600;
}

/* Desktop TOC - responsive */
@media (min-width: 992px) {
  .rm-toc-mobile { display: none; }
}

@media (max-width: 991px) {
  .rm-toc { display: none; }
}

@media (min-width: 992px) and (max-width: 1280px) {
  .rm-toc {
    left: 8px;
    max-width: 140px;
  }
  .rm-toc-link {
    font-size: 11px;
    padding: 5px 0 5px 12px;
  }
}

/* ============================
   TABLE OF CONTENTS - Mobile Collapsible
   ============================ */

@media (max-width: 991px) {
  .rm-toc-mobile {
    max-width: 850px;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
    padding: 0 20px;
  }
  .rm-toc-mobile-toggle {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
  }
  .rm-toc-arrow {
    transition: transform 0.2s;
  }
  .rm-toc-mobile.open .rm-toc-arrow {
    transform: rotate(90deg);
  }
  .rm-toc-mobile-list {
    display: none;
    list-style: none;
    padding: 10px 0;
    margin: 0;
  }
  .rm-toc-mobile.open .rm-toc-mobile-list {
    display: block;
  }
  .rm-toc-mobile-list li {
    list-style: none;
  }
  .rm-toc-mobile-list a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
  }
  .rm-toc-mobile-list a:hover,
  .rm-toc-mobile-list a.active {
    color: #c9a87c;
  }
}


/* ============================
   BREADCRUMBS
   ============================ */

.rm-breadcrumbs {
  max-width: 850px;
  margin: 0 auto 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  text-align: left;
}

.rm-breadcrumbs a {
  color: #c9a87c;
  text-decoration: none;
  transition: color 0.2s;
}

.rm-breadcrumbs a:hover {
  color: #b08e5c;
}

.rm-crumb-sep {
  color: #ccc;
  margin: 0 6px;
}

.rm-crumb-current {
  color: #666;
}

@media (max-width: 768px) {
  .rm-breadcrumbs {
    font-size: 12px;
    padding: 0 20px;
  }
}


/* ============================
   META LINE (Option 1 - Single Line)
   ============================ */

.opt1-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 850px;
  margin: 0 auto 8px;
  font-size: 13px;
  color: #999;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
}

.opt1-line .opt1-seg {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-right: 1px solid #ddd;
  white-space: nowrap;
}

.opt1-line .opt1-seg:last-child {
  border-right: none;
}

.opt1-line .opt1-seg a,
.opt1-line .opt1-seg button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #999;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color 0.2s;
}

.opt1-line .opt1-seg a:hover,
.opt1-line .opt1-seg button:hover {
  color: #c9a87c;
}

.opt1-line .opt1-seg a:hover .meta-icon,
.opt1-line .opt1-seg button:hover .meta-icon {
  fill: #c9a87c;
}

/* SVG icon base for meta line */
.meta-icon {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  fill: #999;
  transition: fill 0.2s;
}

.meta-icon:hover, a:hover .meta-icon {
  fill: #c9a87c;
}

@media (max-width: 768px) {
  .opt1-line {
    font-size: 12px;
    padding: 0 20px;
    gap: 6px;
  }
  .opt1-line .opt1-seg {
    padding: 0 10px;
  }
}


/* ============================
   COPY LINK TOAST
   ============================ */

.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #2a2a2a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ============================
   RELATED SERVICES
   ============================ */

.rm-related {
  text-align: center;
  background: #f8f6f3;
  padding: 80px 20px 70px;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow: hidden;
}

.rm-related * {
  box-sizing: border-box;
}

.rm-related-header {
  text-align: center;
  margin-bottom: 30px;
}

.rm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.rm-related-card {
  background: #fff;
  border: 1px solid #e8e0d5;
  border-radius: 10px;
  padding: 30px 24px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
}

.rm-related-card:hover {
  border-color: #c9a87c;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.rm-related-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.rm-related-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px;
}

.rm-related-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #c9a87c;
}

@media (max-width: 768px) {
  .rm-related {
    padding: 56px 20px 48px;
  }
  .rm-related-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   SERVICE CHECKLIST (already partially exists, ensuring dark variant works)
   ============================ */

.rm-service-checklist {
  max-width: 850px;
  margin: 24px auto 32px;
}

.rm-service-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rm-service-checklist li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.7;
  padding: 10px 0 10px 36px;
  position: relative;
  border-bottom: none;
}

.rm-service-checklist li:last-child {
  border-bottom: none;
}

.rm-service-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 20px;
  height: 20px;
  border: 2px solid #c9a87c;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a87c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/12px no-repeat;
}

@media (max-width: 768px) {
  .rm-service-checklist {
    padding: 0 20px;
  }
  .rm-service-checklist li {
    font-size: 15px;
  }
}


/* ============================
   IMAGE CAPTION
   ============================ */

.rm-image-caption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-style: italic;
}

/* Light section caption */
.rm-editorial:not(.rm-dark) .rm-image-caption {
  color: #888;
}
