/**
 * SOLARA v2.9 — Gutenberg Safe Parity Layer
 * --------------------------------------------------------------------------
 * Styles native WordPress blocks so the Gutenberg test page looks much closer
 * to the Base44 design while remaining safe and editable in the WP editor.
 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Mulish:wght@300;400;500;600;700&display=swap');

.solara-gutenberg-page,
.editor-styles-wrapper {
  --brand-orange: #E88752;
  --brand-terracotta: #B85C38;
  --brand-sand: #F4E6D8;
  --brand-cream: #FFF8F2;
  --brand-charcoal: #2D2A26;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Mulish', sans-serif;
  background: var(--brand-cream);
  color: var(--brand-charcoal);
  font-family: var(--font-body);
}

.solara-gutenberg-page * { box-sizing: border-box; }
.solara-gutenberg-page a { color: inherit; text-decoration: none; }

.solara-gutenberg-page h1,
.solara-gutenberg-page h2,
.solara-gutenberg-page h3,
.solara-gutenberg-page h4,
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4 {
  font-family: var(--font-heading) !important;
  color: var(--brand-charcoal);
  font-weight: 400;
}

.solara-gutenberg-page p,
.solara-gutenberg-page li,
.editor-styles-wrapper p,
.editor-styles-wrapper li {
  font-family: var(--font-body) !important;
}

.solara-block-section {
  padding: 104px 24px;
  background: var(--brand-cream);
  margin: 0 !important;
}
.solara-block-inner { max-width: 1120px; margin: 0 auto; }
.solara-block-inner.narrow { max-width: 820px; }
.solara-block-eyebrow {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brand-orange) !important;
  font-weight: 700;
  margin: 0 0 18px !important;
}
.solara-block-section-title {
  font-size: clamp(42px, 5.4vw, 68px) !important;
  line-height: .98 !important;
  letter-spacing: -.025em;
  margin: 0 auto 24px !important;
  max-width: 780px;
}
.solara-block-lead {
  font-size: 17px !important;
  line-height: 1.85 !important;
  color: rgba(45,42,38,.70) !important;
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.solara-block-note {
  margin-top: 28px !important;
  color: var(--brand-terracotta) !important;
  font-weight: 700;
}

/* Hero */
.solara-block-hero {
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 94px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 20%, rgba(232,135,82,.25), transparent 30%),
    linear-gradient(135deg, rgba(45,42,38,.58), rgba(184,92,56,.32)),
    url('https://solara.steadylens.uk/wp-content/uploads/2026/05/image.png') center/cover no-repeat;
}
.solara-block-hero h1,
.solara-block-hero h2,
.solara-block-hero p { color: #fff !important; }
.solara-block-hero-date {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11px !important;
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 26px !important;
}
.solara-block-hero-title {
  font-size: clamp(88px, 15vw, 188px) !important;
  line-height: .8 !important;
  letter-spacing: .13em;
  font-weight: 300 !important;
  margin: 0 !important;
}
.solara-block-hero-location {
  font-family: var(--font-heading) !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  letter-spacing: .28em;
  font-weight: 300;
  margin: 12px 0 18px !important;
}
.solara-block-hero-kicker {
  font-size: 12px !important;
  letter-spacing: .28em;
  font-weight: 700;
  margin: 0 0 18px !important;
}
.solara-block-hero-lead {
  max-width: 680px;
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: rgba(255,255,255,.88) !important;
  margin-bottom: 30px !important;
}
.solara-block-hero-buttons { gap: 14px; margin-bottom: 28px !important; }
.solara-block-hero-pills { gap: 12px; }
.solara-block-hero-pills p {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.13);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px !important;
  margin: 0 !important;
}

/* Buttons */
.solara-block-button .wp-block-button__link,
.wp-block-button.solara-block-button .wp-block-button__link {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-terracotta)) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 15px 28px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  box-shadow: 0 14px 32px rgba(184,92,56,.28);
}
.solara-block-button-secondary .wp-block-button__link {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  border-radius: 999px !important;
  padding: 15px 24px !important;
  font-weight: 700 !important;
}
.solara-block-button-secondary.dark .wp-block-button__link {
  background: rgba(45,42,38,.08) !important;
  color: var(--brand-charcoal) !important;
  border-color: rgba(45,42,38,.16) !important;
}
.solara-block-button.light .wp-block-button__link {
  background: #fff !important;
  color: var(--brand-terracotta) !important;
}

/* Essence */
.solara-essence-cards { gap: 22px !important; margin-top: 46px !important; }
.solara-block-card,
.solara-essence-card {
  background: #fff;
  border: 1px solid rgba(184,92,56,.16);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 52px rgba(45,42,38,.07);
}
.solara-essence-card h3,
.solara-included-grid h3,
.solara-faculty-grid h3 { font-size: 30px !important; margin: 0 0 8px !important; }
.solara-block-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(232,135,82,.12);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px !important;
  margin: 0 0 18px !important;
}
.solara-about-feature { gap: 56px !important; align-items: center !important; margin-top: 78px !important; }
.solara-about-image-card { position: relative; }
.solara-rounded-image img,
.solara-about-image-card img {
  width: 100%; border-radius: 34px; display: block; box-shadow: 0 26px 70px rgba(45,42,38,.16);
}
.solara-floating-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(234,223,215,.9);
  border-radius: 20px;
  padding: 12px 16px;
  box-shadow: 0 16px 36px rgba(45,42,38,.12);
  backdrop-filter: blur(12px);
}
.solara-floating-card p { margin: 0 !important; color: var(--brand-terracotta); font-weight: 700; font-size: 13px !important; }
.solara-floating-card.top { top: 22px; left: 22px; }
.solara-floating-card.bottom { bottom: 22px; right: 22px; }
.solara-feature-title { font-size: clamp(38px, 4vw, 56px) !important; line-height: 1 !important; }
.solara-about-copy p { font-size: 16px !important; line-height: 1.8; color: rgba(45,42,38,.72); }
.solara-block-pill-row { display: flex !important; flex-wrap: wrap; gap: 10px; margin-top: 22px !important; }
.solara-block-pill {
  display: inline-flex;
  width: fit-content;
  background: rgba(232,135,82,.12);
  border: 1px solid rgba(232,135,82,.2);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--brand-terracotta) !important;
  font-weight: 700;
  font-size: 13px !important;
  margin: 0 !important;
}

/* Included */
.solara-included-section { background: #fff; }
.solara-included-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px !important;
  margin-top: 44px !important;
}
.solara-included-grid .wp-block-column {
  background: var(--brand-cream);
  border: 1px solid rgba(184,92,56,.14);
  border-radius: 26px;
  padding: 24px;
}
.solara-included-grid p:first-child { font-size: 27px !important; margin: 0 0 10px !important; }
.solara-included-grid h3 { font-size: 25px !important; }
.solara-included-grid p { margin: 0; color: rgba(45,42,38,.68); }

/* Schedule */
.solara-schedule-section { background: linear-gradient(180deg, #FFF8F2, #F4E6D8); }
.solara-day-tabs { gap: 10px !important; margin: 38px 0 28px !important; }
.solara-day-tabs .wp-block-column {
  flex-basis: auto !important;
  flex-grow: 0 !important;
  background: #fff;
  border: 1px solid rgba(184,92,56,.16);
  border-radius: 999px;
  padding: 11px 17px;
  font-weight: 700;
  color: var(--brand-terracotta);
  box-shadow: 0 8px 20px rgba(45,42,38,.05);
}
.solara-schedule-card {
  max-width: 840px;
  margin: 0 auto 26px !important;
  background: #fff;
  border-radius: 34px;
  padding: 44px;
  box-shadow: 0 24px 75px rgba(45,42,38,.1);
  border: 1px solid rgba(184,92,56,.14);
  text-align: center;
}
.solara-schedule-icon { font-size: 42px !important; margin: 0 !important; }
.solara-schedule-day { color: var(--brand-orange) !important; font-weight: 800; letter-spacing: .18em; font-size: 12px !important; }
.solara-schedule-title { font-size: 52px !important; margin: 6px 0 !important; }
.solara-schedule-mood { color: rgba(45,42,38,.55) !important; font-style: italic; }
.solara-schedule-card h4 { color: var(--brand-terracotta); font-size: 12px; letter-spacing: .16em; font-family: var(--font-body) !important; }

/* Headliner / Faculty */
.solara-headliner-section, .solara-faculty-section { background: #fff; }
.solara-headliner-card {
  align-items: center !important;
  background: var(--brand-cream);
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(45,42,38,.08);
  margin-top: 44px !important;
}
.solara-headliner-card h3 { font-size: 46px !important; margin: 0 0 16px !important; }
.solara-headliner-card blockquote { border-left: 3px solid var(--brand-orange); padding-left: 20px; color: var(--brand-terracotta); font-family: var(--font-heading); font-size: 25px; }
.solara-faculty-grid { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 18px !important; margin-top: 44px !important; }
.solara-faculty-grid .wp-block-column { background: #fff; border-radius: 28px; overflow: hidden; box-shadow: 0 16px 44px rgba(45,42,38,.08); border: 1px solid rgba(184,92,56,.14); }
.solara-faculty-grid img { width: 100%; height: 220px; object-fit: cover; display: block; }
.solara-faculty-grid h3 { padding: 20px 20px 0; font-size: 27px !important; }
.solara-faculty-grid p { padding: 0 20px 22px; color: rgba(45,42,38,.62); }

/* Dates */
.solara-flight-grid { gap: 22px !important; margin-top: 42px !important; }
.solara-flight-grid .wp-block-column, .solara-venue-card {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(184,92,56,.14);
  box-shadow: 0 18px 54px rgba(45,42,38,.07);
  padding: 28px;
}
.solara-flight-grid h3, .solara-venue-card h3 { font-size: 31px !important; margin: 0 0 8px !important; }
.solara-flight-line { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; }
.solara-flight-line span { color: var(--brand-orange); font-weight: 800; }
.solara-flight-line strong { font-size: 20px; line-height: 1.3; }
.solara-venue-card { max-width: 820px; margin: 26px auto 0 !important; }

/* Villa */
.solara-villa-section { background: #fff; }
.solara-villa-gallery { margin-top: 44px !important; gap: 18px !important; }
.solara-villa-gallery figure { border-radius: 28px; overflow: hidden; box-shadow: 0 16px 44px rgba(45,42,38,.08); }
.solara-villa-gallery img { aspect-ratio: 4/3; object-fit: cover; }
.solara-villa-gallery figcaption { background: linear-gradient(0deg, rgba(45,42,38,.65), transparent); font-family: var(--font-heading); font-size: 23px !important; }

/* Pricing */
.solara-pricing-section { background: linear-gradient(180deg, #FFF8F2, #F4E6D8); }
.solara-pricing-grid { gap: 24px !important; margin-top: 46px !important; align-items: stretch !important; }
.solara-price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(184,92,56,.16);
  border-radius: 34px;
  padding: 36px !important;
  box-shadow: 0 24px 70px rgba(45,42,38,.08);
}
.solara-price-card.premium { background: linear-gradient(135deg, var(--brand-orange), var(--brand-terracotta)); color: #fff; transform: translateY(-12px); }
.solara-price-card.premium h3, .solara-price-card.premium p, .solara-price-card.premium li, .solara-price-card.premium h4 { color: #fff !important; }
.solara-plan-label { letter-spacing: .2em; color: var(--brand-orange) !important; font-weight: 800; font-size: 12px !important; }
.solara-popular { position: absolute; top: -14px; right: 28px; background: #fff; color: var(--brand-terracotta) !important; border-radius: 999px; padding: 8px 14px; font-weight: 800; font-size: 12px !important; }
.solara-price-card h3 { font-size: 36px !important; }
.solara-price { font-family: var(--font-heading) !important; font-size: 60px !important; margin: 22px 0 0 !important; color: var(--brand-charcoal) !important; }
.solara-per { margin-top: 0 !important; color: rgba(45,42,38,.52) !important; }
.solara-price-card ul { padding-left: 20px; line-height: 2; }
.solara-price-card h4 { font-family: var(--font-body) !important; color: var(--brand-terracotta); font-size: 12px; letter-spacing: .18em; }

/* FAQ */
.solara-faq-section { background: #fff; }
.solara-faq-item {
  background: var(--brand-cream);
  border: 1px solid rgba(184,92,56,.14);
  border-radius: 22px;
  padding: 0;
  margin: 13px 0 !important;
  overflow: hidden;
}
.solara-faq-item summary { cursor: pointer; padding: 20px 24px; font-weight: 800; color: var(--brand-charcoal); }
.solara-faq-item p { padding: 0 24px 22px; color: rgba(45,42,38,.68); margin: 0; }
.solara-faq-item:not([open]) p { display: none; }

/* Contact */
.solara-contact-grid { gap: 38px !important; margin-top: 46px !important; align-items: stretch !important; }
.solara-contact-method { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid rgba(184,92,56,.14); padding: 20px; border-radius: 24px; margin-bottom: 16px; }
.solara-contact-method span { font-size: 20px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(232,135,82,.12); border-radius: 14px; }
.solara-contact-method h3 { margin: 0 0 5px !important; font-size: 27px !important; }
.solara-contact-method p { margin: 0 !important; color: rgba(45,42,38,.68); }
.solara-contact-grid img { width: 100%; border-radius: 30px; margin-top: 20px; box-shadow: 0 20px 60px rgba(45,42,38,.11); }
.solara-contact-form-card { background: #fff; border-radius: 32px; padding: 34px !important; box-shadow: 0 24px 70px rgba(45,42,38,.08); border: 1px solid rgba(184,92,56,.14); }
.solara-contact-form-card h3 { font-size: 36px !important; margin-top: 0 !important; }

/* Footer */
.solara-block-footer { background: var(--brand-charcoal) !important; color: rgba(255,255,255,.52) !important; padding: 64px 24px 40px; }
.solara-footer-inner { max-width: 980px; margin: 0 auto; }
.solara-block-footer h3 { font-family: var(--font-body) !important; text-transform: uppercase; letter-spacing: .18em; font-size: 12px !important; color: rgba(255,255,255,.32) !important; }
.solara-block-footer p, .solara-block-footer a { color: rgba(255,255,255,.52) !important; font-size: 14px; line-height: 1.9; }
.solara-footer-logo { color: var(--brand-orange) !important; font-family: var(--font-heading) !important; font-size: 34px !important; letter-spacing: .2em; font-weight: 300; margin: 0 !important; }
.solara-footer-place { text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.36) !important; font-size: 12px !important; }
.solara-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; }
.solara-footer-bottom p { font-size: 12px !important; color: rgba(255,255,255,.28) !important; }

/* Editor comfort */
.editor-styles-wrapper .solara-block-hero { min-height: 760px; }
.editor-styles-wrapper .solara-block-section { border-top: 1px dashed rgba(184,92,56,.18); }

@media (max-width: 900px) {
  .solara-block-section { padding: 78px 20px; }
  .solara-essence-cards,
  .solara-about-feature,
  .solara-included-grid,
  .solara-faculty-grid,
  .solara-pricing-grid,
  .solara-contact-grid { display: block !important; }
  .solara-essence-card,
  .solara-included-grid .wp-block-column,
  .solara-faculty-grid .wp-block-column,
  .solara-price-card,
  .solara-contact-method { margin-bottom: 18px !important; }
  .solara-price-card.premium { transform: none; }
  .solara-block-hero-title { font-size: clamp(58px, 18vw, 96px) !important; }
  .solara-block-section-title { font-size: clamp(38px, 11vw, 52px) !important; }
  .solara-floating-card { position: static; margin-top: 12px; width: fit-content; }
  .solara-footer-bottom { flex-direction: column; text-align: center; }
}

/* -----------------------------------------------------------------------------
   SOLARA v3.2 — Hero background + SVG logo parity update
   -----------------------------------------------------------------------------
   These rules are intentionally loaded after the earlier Gutenberg parity styles.
   Replace the background URL below with your uploaded WordPress Media URL if you
   want to swap the hero image from the editor/site later.
----------------------------------------------------------------------------- */
.solara-gutenberg-page .solara-hero,
.editor-styles-wrapper .solara-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
  color: #b85c38;
  text-align: center;
  background:
    linear-gradient(rgba(255, 248, 242, 0.20), rgba(255, 248, 242, 0.72)),
    url('https://solara.steadylens.uk/wp-content/uploads/2026/05/image.png') center / cover no-repeat;
}

.solara-gutenberg-page .solara-hero-overlay,
.editor-styles-wrapper .solara-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 209, 179, 0.12), rgba(45, 42, 38, 0.18));
  pointer-events: none;
}

.solara-gutenberg-page .solara-hero-content,
.editor-styles-wrapper .solara-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.solara-gutenberg-page .solara-logo-wrap,
.editor-styles-wrapper .solara-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.solara-gutenberg-page .solara-logo,
.editor-styles-wrapper .solara-logo {
  color: #c85f32;
  width: clamp(130px, 18vw, 220px);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(45, 42, 38, 0.12));
}

.solara-gutenberg-page .solara-kicker,
.editor-styles-wrapper .solara-kicker,
.solara-gutenberg-page .solara-block-hero-date,
.editor-styles-wrapper .solara-block-hero-date {
  margin: 0 auto 0.6rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #b85c38 !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  display: block !important;
  width: auto !important;
  font-weight: 700;
}

.solara-gutenberg-page .solara-hero h1,
.editor-styles-wrapper .solara-hero h1,
.solara-gutenberg-page .solara-block-hero-title,
.editor-styles-wrapper .solara-block-hero-title {
  margin: 0 !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(4rem, 12vw, 9rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.24em !important;
  line-height: 0.9 !important;
  color: #b85c38 !important;
}

.solara-gutenberg-page .solara-block-hero-location,
.editor-styles-wrapper .solara-block-hero-location {
  margin: 0.7rem 0 0 !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.4rem, 3vw, 2.4rem) !important;
  letter-spacing: 0.02em !important;
  text-transform: none;
  color: #b85c38 !important;
  font-style: italic;
}

.solara-gutenberg-page .solara-tagline,
.editor-styles-wrapper .solara-tagline,
.solara-gutenberg-page .solara-block-hero-kicker,
.editor-styles-wrapper .solara-block-hero-kicker {
  margin: 1.4rem 0 0 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem) !important;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b85c38 !important;
  font-weight: 700;
}

.solara-gutenberg-page .solara-intro,
.editor-styles-wrapper .solara-intro,
.solara-gutenberg-page .solara-block-hero-lead,
.editor-styles-wrapper .solara-block-hero-lead {
  max-width: 660px;
  margin: 2rem auto 0 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.6vw, 1.2rem) !important;
  line-height: 1.7 !important;
  color: #2d2a26 !important;
}

.solara-gutenberg-page .solara-block-hero-buttons,
.editor-styles-wrapper .solara-block-hero-buttons {
  margin-top: 2.2rem !important;
}

.solara-gutenberg-page .solara-button .wp-block-button__link,
.editor-styles-wrapper .solara-button .wp-block-button__link,
.solara-gutenberg-page .solara-block-button .wp-block-button__link,
.editor-styles-wrapper .solara-block-button .wp-block-button__link {
  display: inline-flex;
  padding: 0.95rem 1.6rem !important;
  border-radius: 999px !important;
  background: #e88752 !important;
  color: #fff8f2 !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(184, 92, 56, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.solara-gutenberg-page .solara-button .wp-block-button__link:hover,
.solara-gutenberg-page .solara-block-button .wp-block-button__link:hover {
  transform: translateY(-2px);
  background: #b85c38 !important;
  box-shadow: 0 18px 45px rgba(184, 92, 56, 0.34);
}

.solara-gutenberg-page .solara-block-button-secondary .wp-block-button__link,
.editor-styles-wrapper .solara-block-button-secondary .wp-block-button__link {
  background: rgba(255,248,242,.55) !important;
  border: 1px solid rgba(184,92,56,.40) !important;
  color: #b85c38 !important;
  border-radius: 999px !important;
  padding: 0.95rem 1.6rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 700;
}

.solara-gutenberg-page .solara-block-hero-pills,
.editor-styles-wrapper .solara-block-hero-pills {
  margin-top: 1.2rem !important;
  gap: 0.7rem !important;
}

.solara-gutenberg-page .solara-block-hero-pills p,
.editor-styles-wrapper .solara-block-hero-pills p {
  background: rgba(255,248,242,.38) !important;
  border: 1px solid rgba(184,92,56,.18) !important;
  color: #2d2a26 !important;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem !important;
}

@media (max-width: 768px) {
  .solara-gutenberg-page .solara-hero,
  .editor-styles-wrapper .solara-hero {
    min-height: 82vh;
    padding: 4rem 1.25rem;
  }

  .solara-gutenberg-page .solara-hero h1,
  .editor-styles-wrapper .solara-hero h1,
  .solara-gutenberg-page .solara-block-hero-title,
  .editor-styles-wrapper .solara-block-hero-title {
    letter-spacing: 0.16em !important;
  }

  .solara-gutenberg-page .solara-tagline,
  .editor-styles-wrapper .solara-tagline,
  .solara-gutenberg-page .solara-kicker,
  .editor-styles-wrapper .solara-kicker {
    letter-spacing: 0.18em;
  }
}
