/*
Theme Name: Sherry On Shore
Theme URI: https://sherryonshore.com
Author: Custom Theme Generator
Author URI: https://sherryonshore.com
Description: A bespoke, luxury travel and lifestyle storytelling WordPress theme crafted for Sherry On Shore. Features elegant serif typography, coastal color palette, responsive hero sections, and custom blog layouts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sherry-on-shore
Tags: travel, luxury, blog, bespoke, responsive-layout, grid-layout, custom-menu, featured-images, two-columns
*/

/* ==========================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  /* Color Palette derived from Sherry On Shore */
  --color-ocean-dark: #1b3846;      /* Deep navy/teal header & dark text */
  --color-ocean-medium: #3a6878;    /* Muted teal for accents & secondary text */
  --color-ocean-light: #98c1cd;     /* Soft seafoam blue hero overlay & accents */
  --color-ocean-bg: #d7e8ec;        /* Very light seafoam section backgrounds */
  --color-cream: #fbf9f4;           /* Warm off-white hero cards & section background */
  --color-sand-gold: #c59b27;       /* Gold/compass star accent color */
  --color-sand-hover: #a37f1e;      /* Hover state for gold elements */
  --color-text-primary: #212b31;    /* Primary dark body text */
  --color-text-muted: #5a6973;      /* Muted gray text */
  --color-white: #ffffff;
  --color-border: #e2ded4;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Layout */
  --container-max-width: 1280px;
  --header-height: 90px;
  --border-radius: 4px;
  --transition: all 0.3s ease-in-out;
  --box-shadow: 0 10px 30px rgba(27, 56, 70, 0.08);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-ocean-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--color-sand-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-ocean-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.25rem;
}

blockquote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  text-align: center;
  color: var(--color-ocean-dark);
  margin: 2.5rem 0;
  padding: 0 2rem;
  border: none;
}

/* ==========================================================================
   3. LAYOUT & CONTAINER
   ========================================================================== */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: var(--spacing-xl) 0;
}

.site-main {
  min-height: 60vh;
}

/* ==========================================================================
   4. HEADER & SPLIT NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(27, 56, 70, 0.08);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header .container.header-split-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header .site-branding {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.site-title a {
  color: var(--color-ocean-dark);
}

.site-header .main-navigation {
  flex: 1 1 0%;
}

.site-header .main-navigation.nav-left {
  display: flex;
  justify-content: flex-end;
}

.site-header .main-navigation.nav-right {
  display: flex;
  justify-content: flex-start;
}

.site-header .main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-header .main-navigation a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-ocean-dark);
  padding: 0.5rem 0;
  white-space: nowrap;
}

/* Screen Reader Text Helper Class */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ==========================================================================
   5. BUTTONS & UTILITIES
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2.2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-ocean-dark);
  color: var(--color-white);
  border: 1px solid var(--color-ocean-dark);
}

.btn-primary:hover {
  background-color: var(--color-sand-gold);
  border-color: var(--color-sand-gold);
  color: var(--color-white);
}

.btn-link {
  background: transparent;
  color: var(--color-ocean-dark);
  padding: 0;
  border: none;
  border-bottom: 1px solid var(--color-ocean-dark);
  border-radius: 0;
}

.btn-link:hover {
  color: var(--color-sand-gold);
  border-color: var(--color-sand-gold);
}

.text-center { text-align: center; }

/* ==========================================================================
   6. FOOTER STYLES
   ========================================================================== */
.site-footer {
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.site-info {
  border-top: 1px solid rgba(27, 56, 70, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  :root {
    --header-height: auto;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .site-header .container.header-split-container {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .site-header .main-navigation {
    width: 100%;
  }

  .site-header .main-navigation.nav-left,
  .site-header .main-navigation.nav-right {
    justify-content: center;
  }

  .site-header .main-navigation ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================================================
   8. HOMEPAGE-SPECIFIC STYLES
   ========================================================================== */
.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  padding: 1rem 0;
}

.home .site-header .site-branding,
.home .site-header .main-navigation a {
  color: #003366;
}

.home .site-header .site-description {
  color: rgba(255, 255, 255, 0.8);
}

.home .site-header .main-navigation ul {
  gap: 1.5rem;
}

.home .site-header .main-navigation a:hover,
.home .site-header .main-navigation a:focus {
  color: #f9d9a6;
}

.homepage-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(27, 56, 70, 0.05) 0%, rgba(152, 193, 205, 0.08) 100%);
  padding: 0;
  overflow: visible;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(27, 56, 70, 0.05) 0%, rgba(152, 193, 205, 0.08) 100%);
  padding: 2.5rem 0;
}

.hero-banner-background {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;

  background:
    linear-gradient(
      rgba(152, 193, 205, 0.7),
      rgba(152, 193, 205, 0.7)
    ),
    url("https://theothersideofmae.com/wp-content/uploads/2026/07/Banner-tropical-beach-getaway.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(27, 56, 70, 0.15);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content-section {
  position: relative;
  padding: 4rem 0;
  background: var(--color-white);
}

.hero-content-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-cream);
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(27, 56, 70, 0.08);
  border: 1px solid rgba(27, 56, 70, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.homepage-hero:hover .hero-image-inner {
  transform: scale(1.02);
  box-shadow: 0 40px 80px rgba(27, 56, 70, 0.25);
}

.homepage-hero:hover .hero-content-card {
  box-shadow: 0 30px 70px rgba(27, 56, 70, 0.15);
  transform: translateY(-3px);
}

.hero-eyebrow {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--color-ocean-medium);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--color-ocean-dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta .button-primary,
.hero-cta .button-secondary {
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .hero-banner-background {
    padding: 1.25rem;
  }

  .hero-image-inner {
    aspect-ratio: 16 / 10;
  }

  .hero-content-card {
    padding: 2.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-banner-wrapper {
    padding: 1.5rem 0;
  }

  .hero-banner-background {
    width: 95%;
    padding: 1rem;
  }

  .hero-image-inner {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .hero-content-section {
    padding: 2.5rem 0;
  }

  .hero-content-card {
    max-width: 100%;
    width: 95%;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-banner-wrapper {
    padding: 1rem 0;
  }

  .hero-banner-background {
    width: 95%;
    padding: 0.75rem;
  }

  .hero-image-inner {
    aspect-ratio: 1 / 1;
  }

  .hero-content-card {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

/* ==========================================================================
   SECTION DIVIDERS
   ========================================================================== */
.section-divider {
  height: 4px;
  background-color: #1B3846;
  margin: 3rem auto;
  width: 90%;
  max-width: var(--container-max-width);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-divider {
    margin: 2rem auto;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .section-divider {
    margin: 1.5rem auto;
    height: 2px;
  }
}


.homepage-quote {
  padding: 4rem 0;
  background-color: var(--color-cream);
}

.homepage-quote blockquote {
  margin: 0 auto 1.5rem;
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--color-ocean-dark);
  font-family: var(--font-heading);
  text-align: center;
}

.quote-author {
  margin: 0;
  color: var(--color-ocean-medium);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.homepage-intro,
.homepage-book {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0;
}

.homepage-intro .intro-image img,
.homepage-book .book-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: var(--box-shadow);
}

.homepage-intro .intro-content h2,
.homepage-book .book-copy h2 {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
}

.homepage-intro .intro-content p,
.homepage-book .book-copy p,
.service-copy {
  color: var(--color-text-primary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.button-secondary,
.button-primary {
  display: inline-block;
  border-radius: 999px;
  padding: 1rem 2.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.button-secondary {
  border: 1px solid var(--color-ocean-dark);
  color: var(--color-ocean-dark);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--color-ocean-dark);
  color: var(--color-white);
}

.button-primary {
  background: var(--color-ocean-dark);
  color: var(--color-white);
  border: 1px solid var(--color-ocean-dark);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--color-sand-gold);
  border-color: var(--color-sand-gold);
}

.service-intro {
  max-width: 940px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(27, 56, 70, 0.08);
  border-radius: 28px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.service-card h3 a,
.service-link {
  color: var(--color-ocean-dark);
  text-decoration: none;
}

.service-card h3 a:hover,
.service-link:hover {
  color: var(--color-sand-gold);
}

.homepage-book .book-cover {
  max-width: 420px;
  margin: 0 auto;
}

.homepage-book .book-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--color-ocean-medium);
}

.homepage-blog {
  background: linear-gradient(180deg, rgba(115, 196, 186, 0.15) 0%, rgba(243, 236, 221, 0.4) 100%);
  padding: 6rem 0 8rem;
}

.homepage-blog .container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.homepage-blog .section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.homepage-blog .section-heading .eyebrow {
  margin-bottom: 1rem;
}

.homepage-blog .section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(27, 56, 70, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
  border: 1px solid rgba(27, 56, 70, 0.04);
}

.blog-card-link:hover .blog-card {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(27, 56, 70, 0.15);
  border-color: rgba(27, 56, 70, 0.1);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-ocean-light) 0%, var(--color-ocean-bg) 100%);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.blog-card-link:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-ocean-light) 0%, var(--color-ocean-medium) 100%);
  opacity: 0.7;
}

.blog-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.blog-card-meta {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--color-ocean-medium);
  font-weight: 500;
  opacity: 0.85;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--color-ocean-dark);
  margin: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.blog-card-link:hover .blog-card-title {
  color: var(--color-sand-gold);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}

.blog-card-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ocean-dark);
  transition: color 0.3s ease;
}

.blog-card-link:hover .blog-card-cta {
  color: var(--color-sand-gold);
}

.blog-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.blog-empty-message {
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  padding: 3rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .blog-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .blog-card-body {
    padding: 1.5rem;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .homepage-blog {
    padding: 4rem 0 5rem;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-body {
    padding: 1.5rem;
  }

  .blog-card-title {
    font-size: 1.15rem;
  }

  .blog-card-excerpt {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .blog-card-image {
    height: 180px;
  }

  .blog-card-body {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1rem;
  }

  .blog-card-excerpt {
    font-size: 0.85rem;
  }
}


.homepage-gallery {
  padding: 6rem 0;
}

.homepage-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.homepage-gallery .gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.homepage-ig {
  padding: 6rem 0 8rem;
  background: linear-gradient(180deg, rgba(244, 227, 197, 0.4) 0%, rgba(248, 244, 236, 0.95) 100%);
}

.homepage-ig .ig-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.homepage-ig .ig-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .homepage-intro,
  .homepage-book {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: auto;
  }

  .homepage-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-ig .ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .homepage-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .homepage-ig .ig-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-book {
    padding: 4rem 0;
  }

  .homepage-intro {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .homepage-ig .ig-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. HOMEPAGE WIDGET AREAS
   ========================================================================== */
.homepage-top-widgets-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.homepage-middle-widgets-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.homepage-bottom-widgets-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.homepage-widget {
  margin-bottom: var(--spacing-md);
}

.homepage-widget:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .homepage-top-widgets-section,
  .homepage-middle-widgets-section,
  .homepage-bottom-widgets-section {
    padding: var(--spacing-md) 0;
  }
}

