/*************************************************
 * LIGHT OF THE SOIL WELLNESS SYSTEM – USER.CSS
 * Cassiopeia template overrides + LOTSWS styling
 *************************************************/

/* -------------------------------
   1. LOTSWS COLOR VARIABLES
---------------------------------*/

:root {
  --lotsws-green-dark: #355E52;
  --lotsws-green:      #5F8A6C;
  --lotsws-green-soft: #4F6F60;
  --lotsws-bg-soft:    #EEF4EF;
  --lotsws-border:     #D5E2D8;
  --lotsws-text-main:  #2D2D2D;
}

/* -------------------------------
   2. GLOBAL PAGE & TYPOGRAPHY
---------------------------------*/

body {
  background-color: var(--lotsws-bg-soft);
  color: var(--lotsws-text-main);
}

h1, h2, h3, h4, h5 {
  color: var(--lotsws-green-dark);
}

p, li, span, article, .content {
  color: var(--lotsws-text-main);
}

/* Main content grid background (soft) */
.site-grid {
  background-color: var(--lotsws-bg-soft);
}

/* Links */
a {
  color: var(--lotsws-green-dark);
}
a:hover {
  color: var(--lotsws-green);
}

/* -------------------------------
   3. HEADER / NAVIGATION
---------------------------------*/

/* Remove default Cassiopeia blue gradient & set LOTSWS header */
.container-header,
.site-header,
.header {
  background: var(--lotsws-green-dark) !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Optional: completely kill template gradient variable */
:root {
  --cassiopeia-gradient: none !important;
}

/* Top nav links */
.container-header .mod-menu a {
  color: #F5F8F6 !important;
}

.container-header .mod-menu a:hover,
.container-header .mod-menu .active > a {
  color: #FFFFFF !important;
  text-decoration: underline;
}

/* -------------------------------
   4. BUTTONS
---------------------------------*/

.btn,
.lotsws-btn {
  background-color: var(--lotsws-green) !important;
  color: #FFFFFF !important;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  border: none;
  display: inline-block;
}

.btn:hover,
.lotsws-btn:hover {
  background-color: #4E745A !important;
  color: #FFFFFF !important;
}

/* Buttons that might appear inside dropdowns */
.dropdown-menu .btn {
  background: var(--lotsws-green) !important;
  color: #FFFFFF !important;
  border-radius: 6px;
}

/* -------------------------------
   5. MODULES & LOTSWS CARDS
---------------------------------*/

/* Reset generic modules so not everything is boxed */
.moduletable {
  background: transparent;
  border: none;
  padding: 0;
}

/* Card style only for LOTSWS sections */
.lotsws-section,
.lotsws-feature {
  background-color: #FFFFFF;
  border: 1px solid var(--lotsws-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* -------------------------------
   6. HOMEPAGE FEATURE BLOCKS
---------------------------------*/

/* Quick Start sidebar / feature module */
.lotsws-quickstart-side {
  background: var(--lotsws-bg-soft);
  border: 1px solid var(--lotsws-border);
  border-radius: 12px;
  padding: 1.8rem 1.4rem;
  margin: 1rem 0 2rem;
}

.lotsws-quickstart-side h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--lotsws-green-dark);
  text-align: center;
}

.lotsws-quickstart-side .qs-side-text {
  text-align: center;
  font-size: 1rem;
  color: var(--lotsws-text-main);
  margin-bottom: 1.4rem;
  line-height: 1.55;
}

/* Shared feature blocks under the two hero images */
.lotsws-feature {
  margin-top: 1rem;
}

.lotsws-feature h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--lotsws-green-dark);
}

.lotsws-feature p {
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0.45rem;
  color: var(--lotsws-text-main);
}

/* Text link at bottom of features (“Learn about…”, “View Quick Start…”) */
.lotsws-text-link {
  font-size: 0.95rem;
  text-decoration: underline;
  color: var(--lotsws-green-dark);
}
.lotsws-text-link:hover {
  text-decoration: none;
}

/* Short description under Four Pillars image */
.lotsws-fourpillars-intro {
  margin-top: 1rem;
}

/* Optional generic LOTSWS inner soil wrapper (for articles) */
.lotsws-innersoil {
  max-width: 900px;
  margin: 0 auto;
}

/* -------------------------------
   7. DROPDOWN MENU STYLING
---------------------------------*/

.mod-menu .dropdown-menu {
  background-color: #FFFFFF !important;
  border: 1px solid var(--lotsws-border) !important;
  border-radius: 8px !important;
  padding: 0.5rem 0;
}

.mod-menu .dropdown-menu a {
  color: var(--lotsws-green-dark) !important;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
}

.mod-menu .dropdown-menu a:hover {
  background-color: var(--lotsws-bg-soft) !important;
  color: #223C35 !important;
}

/* -------------------------------
   8. FOOTER
---------------------------------*/

.footer {
  background-color: var(--lotsws-green-dark) !important;
  color: #FFFFFF;
}
.footer a {
  color: #FFFFFF;
}
.footer a:hover {
  color: #D5E2D8;
}
/* LOTSWS Top Menu – Make all items readable */

/* Normal menu links */
.container-header .navbar-nav .nav-link,
.container-header .mod-menu a {
  color: #FDFDFD !important;              /* bright white */
}

/* Hover state */
.container-header .navbar-nav .nav-link:hover,
.container-header .mod-menu a:hover {
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.06);
  text-decoration: underline;
}

/* Active / current page item */
.container-header .navbar-nav .nav-link.active,
.container-header .mod-menu .active > a {
  color: #FFFFFF !important;
  text-decoration: underline;
  border-bottom: 2px solid #D5E2D8;
}

/* Dropdown toggles in the top bar */
.container-header .navbar-nav .dropdown-toggle {
  color: #FDFDFD !important;
}
/* FIX: Dropdown menu text should be dark green on white */
.mod-menu .dropdown-menu a {
  color: #355E52 !important;        /* LOTSWS deep sage */
  background-color: #FFFFFF !important;
}

.mod-menu .dropdown-menu a:hover {
  background-color: #EEF4EF !important;   /* soft mint hover */
  color: #223C35 !important;
}
/********************************************
 * LOTSWS NAV + DROPDOWN HARD RESET
 ********************************************/

/* Header background stays LOTSWS green */
.container-header,
.site-header,
.header {
  background: #355E52 !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* TOP-LEVEL MENU ITEMS (always bright white) */
.container-header .navbar-nav .nav-link,
.container-header .mod-menu > li > a {
  color: #FDFDFD !important;
  font-weight: 500;
}

/* Hover + active state (top-level) */
.container-header .navbar-nav .nav-link:hover,
.container-header .mod-menu > li > a:hover,
.container-header .navbar-nav .nav-link.active,
.container-header .mod-menu .active > a {
  color: #FFFFFF !important;
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.06);
  border-bottom: 2px solid #D5E2D8;
}

/* DROPDOWN PANEL (background + border) */
.container-header .navbar-nav .dropdown-menu,
.mod-menu .dropdown-menu {
  background-color: #FFFFFF !important;          /* solid white */
  border: 1px solid #D5E2D8 !important;          /* soft border */
  border-radius: 8px !important;
  padding: 0.4rem 0;
}

/* DROPDOWN LINKS – REAL TEXT COLOR */
.container-header .navbar-nav .dropdown-menu .dropdown-item,
.container-header .navbar-nav .dropdown-menu a,
.mod-menu .dropdown-menu .dropdown-item,
.mod-menu .dropdown-menu a {
  color: #355E52 !important;                     /* deep sage text */
  background-color: #FFFFFF !important;
  font-weight: 500;
  padding: 0.4rem 1.25rem;
}

/* DROPDOWN HOVER */
.container-header .navbar-nav .dropdown-menu .dropdown-item:hover,
.container-header .navbar-nav .dropdown-menu a:hover,
.mod-menu .dropdown-menu .dropdown-item:hover,
.mod-menu .dropdown-menu a:hover {
  background-color: #EEF4EF !important;          /* soft mint hover */
  color: #223C35 !important;
  text-decoration: none;
}
/********************************************
 * LOTSWS – FINAL SUBMENU FIX
 ********************************************/

/* Submenu container (second level, drop-down panel) */
.container-header .mod-menu__sub {
  background-color: #FFFFFF !important;
  border: 1px solid #D5E2D8 !important;
  border-radius: 8px !important;
  padding: 0.4rem 0;
}

/* Submenu links themselves */
.container-header .mod-menu__sub a {
  color: #355E52 !important;              /* deep sage text */
  background-color: #FFFFFF !important;
  font-weight: 500;
  padding: 0.4rem 1.25rem;
  display: block;
}

/* Submenu hover */
.container-header .mod-menu__sub a:hover {
  background-color: #EEF4EF !important;   /* soft mint hover */
  color: #223C35 !important;
  text-decoration: none;
}
/********************************************
 * LOTSWS – FINAL TOP MENU HEADER FIX
 ********************************************/

/* Top-level menu links: always white */
.container-header .mod-menu > li > a,
.container-header .navbar-nav > li > a,
.container-header .navbar-nav > li > .nav-link,
.container-header .mod-menu .item > a {
  color: #FFFFFF !important;
  font-weight: 600;
}

/* Top-level hover */
.container-header .mod-menu > li > a:hover,
.container-header .navbar-nav > li > a:hover,
.container-header .navbar-nav > li > .nav-link:hover {
  color: #FFFFFF !important;
  text-decoration: underline;
}

/* Active top-level item */
.container-header .mod-menu .active > a,
.container-header .navbar-nav .nav-link.active {
  color: #FFFFFF !important;
  border-bottom: 2px solid #D5E2D8;
  background-color: rgba(255, 255, 255, 0.06);
}
/* ================================
   LOTSWS - Beneath Our Feet Section
   ================================ */

.lotsws-beneath {
  margin: 2rem auto;
  padding: 0; /* inner padding handled by .lotsws-beneath-inner */
}

.lotsws-beneath-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-left: 4px solid #f5f5f5;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);        /* looks great on dark or image backgrounds */
  backdrop-filter: blur(2px);             /* safe enhancement; ignored if not supported */
  color: #f5f5f5;
}

.lotsws-beneath-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.03em;
}

.lotsws-beneath-subtitle {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.lotsws-beneath-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.lotsws-beneath-close {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .lotsws-beneath-inner {
    padding: 2.5rem 2.5rem;
  }

  .lotsws-beneath-title {
    font-size: 2.3rem;
  }
}
/* ================================
   Sounds of the Soil - Home Page
   ================================ */

.sots-page {
  max-width: 1080px;
  margin: 0 auto 3rem auto;
  padding: 1rem;
}

/* HERO */
.sots-hero {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%),
              rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  color: #f5f5f5;
}

.sots-hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.sots-hero-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
}

.sots-hero-tagline {
  margin: 0 0 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
}

.sots-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sots-hero-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #f5f5f5;
}

.sots-hero-btn-primary {
  background: #f5f5f5;
  color: #111;
  font-weight: 600;
}

.sots-hero-btn-secondary {
  background: transparent;
  color: #f5f5f5;
}

.sots-hero-btn-secondary:hover {
  background: rgba(245,245,245,0.08);
}

/* SECTION TITLES */
.sots-section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

/* FEATURED TRACK */
.sots-featured {
  margin: 2rem 0;
  padding: 1.75rem 1.5rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  color: #f5f5f5;
}

.sots-featured-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sots-featured-audio audio {
  width: 100%;
}

.sots-featured-text p {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}

/* LISTENING ROOM */
.sots-tracks {
  margin: 2.5rem 0;
  padding: 1.5rem 1.25rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
  color: #f5f5f5;
}

.sots-track {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(245,245,245,0.25);
}

.sots-track:first-of-type {
  border-top: none;
}

.sots-track-header {
  margin-bottom: 0.75rem;
}

.sots-track-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.sots-track-tagline {
  margin: 0.2rem 0 0.6rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.sots-track-audio audio {
  width: 100%;
}

.sots-lyrics-toggle {
  margin-top: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #f5f5f5;
  background: transparent;
  color: #f5f5f5;
  font-size: 0.9rem;
  cursor: pointer;
}

.sots-lyrics-toggle:hover {
  background: rgba(245,245,245,0.1);
}

.sots-lyrics {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: rgba(0,0,0,0.45);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FEEDBACK */
.sots-feedback {
  margin: 2.5rem 0 3rem 0;
  padding: 1.75rem 1.5rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  color: #f5f5f5;
}

.sots-feedback-link {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
  .sots-hero {
    padding: 2.5rem 2.5rem;
  }

  .sots-featured-body {
    flex-direction: row;
    align-items: flex-start;
  }

  .sots-featured-audio,
  .sots-featured-text {
    flex: 1;
  }

  .sots-page {
    padding: 1.5rem;
  }
}
/* =========================================
   QUICK SOTS CLEANUP OVERRIDES (v1)
   ========================================= */

/* Overall page container */
.sots-page {
  max-width: 1080px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 1rem;
}

/* HERO */
.sots-hero {
  margin: 0 0 2rem 0;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: #f5f5f5;          /* light card instead of dark gray */
  color: #222;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.sots-hero-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: #275343;               /* deep green to match your brand */
}

.sots-hero-tagline {
  margin: 0 0 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.sots-hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sots-hero-btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #275343;
}

.sots-hero-btn-primary {
  background: #275343;
  color: #fff;
  font-weight: 600;
}

.sots-hero-btn-primary:hover {
  background: #1e4134;
}

/* SECTION TITLES */
.sots-section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #275343;
}

/* FEATURED TRACK PANEL */
.sots-featured {
  margin: 0 0 2rem 0;
  padding: 1.75rem 1.75rem;
  border-radius: 16px;
  background: #f8f8f8;
  color: #222;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.sots-featured-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sots-featured-audio audio {
  width: 100%;
}

.sots-featured-text p {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}

/* LYRICS TOGGLE + BLOCK */
.sots-lyrics-toggle {
  margin-top: 0.75rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #275343;
  background: transparent;
  color: #275343;
  font-size: 0.9rem;
  cursor: pointer;
}

.sots-lyrics-toggle:hover {
  background: #275343;
  color: #fff;
}

.sots-lyrics {
  margin-top: 0.9rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FEEDBACK PANEL */
.sots-feedback {
  margin: 0 0 2.5rem 0;
  padding: 1.75rem 1.75rem;
  border-radius: 16px;
  background: #f8f8f8;
  color: #222;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.sots-feedback-link {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: underline;
  color: #275343;
}

.sots-feedback-link:hover {
  text-decoration: none;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .sots-page {
    padding: 2rem 1.5rem;
  }

  .sots-hero {
    padding: 2.5rem 2.5rem;
  }

  .sots-featured-body {
    flex-direction: row;
    align-items: flex-start;
  }

  .sots-featured-audio,
  .sots-featured-text {
    flex: 1;
  }
}
/* =========================================================
   Sounds of the Soil™ Portal  - v1 Layout & Styling
   All classes are prefixed with .sots- to avoid conflicts.
   ========================================================= */

/* Overall page container */
.sots-page {
  max-width: 1080px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 1rem;
}

/* -----------------------
   HERO SECTION
   ----------------------- */

.sots-hero {
  margin: 0 0 2rem 0;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: #f5f5f5;          /* light card */
  color: #222;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.sots-hero-inner {
  max-width: 960px;
  margin: 0 auto;
}

.sots-hero-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: #275343;               /* deep green brand tone */
}

.sots-hero-tagline {
  margin: 0 0 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.sots-hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sots-hero-btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #275343;
}

.sots-hero-btn-primary {
  background: #275343;
  color: #fff;
  font-weight: 600;
}

.sots-hero-btn-primary:hover {
  background: #1e4134;
}

/* -----------------------
   SECTION TITLES
   ----------------------- */

.sots-section-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #275343;
}

/* -----------------------
   FEATURED TRACK PANEL
   ----------------------- */

.sots-featured {
  margin: 0 0 2rem 0;
  padding: 1.75rem 1.75rem;
  border-radius: 16px;
  background: #f8f8f8;
  color: #222;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.sots-featured-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Left column: audio + lyrics */
.sots-featured-audio audio {
  width: 100%;
  margin-bottom: 0.6rem;
}

/* Right column: description text */
.sots-featured-text p {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}

/* -----------------------
   LYRICS TOGGLE + BLOCK
   ----------------------- */

.sots-lyrics-toggle {
  display: inline-block;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #275343;
  background: transparent;
  color: #275343;
  font-size: 0.9rem;
  cursor: pointer;
}

.sots-lyrics-toggle:hover {
  background: #275343;
  color: #fff;
}

.sots-lyrics {
  margin-top: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -----------------------
   FEEDBACK PANEL
   ----------------------- */

.sots-feedback {
  margin: 0 0 2.5rem 0;
  padding: 1.75rem 1.75rem;
  border-radius: 16px;
  background: #f8f8f8;
  color: #222;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.sots-feedback-link {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: underline;
  color: #275343;
}

.sots-feedback-link:hover {
  text-decoration: none;
}

/* -----------------------
   RESPONSIVE TWEAKS
   ----------------------- */

@media (min-width: 768px) {
  .sots-page {
    padding: 2rem 1.5rem;
  }

  .sots-hero {
    padding: 2.5rem 2.5rem;
  }

  .sots-featured-body {
    flex-direction: row;
    align-items: flex-start;
  }

  .sots-featured-audio,
  .sots-featured-text {
    flex: 1;
  }
}
/* SOTS - Make lyrics scrollable instead of super tall */
.sots-lyrics {
  margin-top: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  line-height: 1.5;

  /* NEW: limit height and allow scrolling */
  max-height: 180px;      /* adjust this if you want more/less visible lines */
  overflow-y: auto;
}

/* Optional: a bit more height on bigger screens */
@media (min-width: 768px) {
  .sots-lyrics {
    max-height: 220px;
  }
}
/* =========================================
   Sounds of the Soil - Admin Dashboard
   ========================================= */

.sots-admin {
  max-width: 1080px;
  margin: 0 auto 3rem auto;
  padding: 1.5rem 1rem;
}

.sots-admin-hero {
  margin-bottom: 1.75rem;
  padding: 1.5rem 1.75rem;
  border-radius: 14px;
  background: #1f2933;
  color: #f5f5f5;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.sots-admin-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
}

.sots-admin-tagline {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.9;
}

.sots-admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.sots-admin-card {
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: #f5f5f5;
  color: #222;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.sots-admin-card-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #275343;
}

.sots-admin-card-text {
  margin: 0 0 0.75rem 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.sots-admin-card-footer {
  margin: 0.5rem 0 0 0;
}

.sots-admin-btn {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid #275343;
  background: #275343;
  color: #fff;
  font-weight: 600;
}

.sots-admin-btn:hover {
  background: #1e4134;
}

.sots-admin-list {
  margin: 0.25rem 0 0 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sots-admin-list li + li {
  margin-top: 0.25rem;
}

/* Responsive layout for admin cards */
@media (min-width: 768px) {
  .sots-admin {
    padding: 2rem 1.5rem;
  }

  .sots-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* =========================================
   SOTS Admin Dashboard — Modern Glass UI
   ========================================= */

/* HERO BACKGROUND GLASS EFFECT */
.sots-admin-hero {
  background: linear-gradient(135deg, rgba(32, 48, 42, 0.88), rgba(18, 28, 25, 0.88));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* HERO TITLE */
.sots-admin-title {
  color: #e8fff2;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

/* HERO TAGLINE - much brighter now */
.sots-admin-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}

/* GLASS CARDS */
.sots-admin-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* HOVER LIFT */
.sots-admin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

/* BUTTON IMPROVEMENTS */
.sots-admin-btn {
  background: linear-gradient(135deg, #275343, #1d3f32);
  border: none;
  color: #ffffff;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, transform 0.15s ease;
}

.sots-admin-btn:hover {
  background: linear-gradient(135deg, #307a5f, #275343);
  transform: translateY(-1px);
}

/* CARD TITLES */
.sots-admin-card-title {
  color: #1e4639;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

/* LIST IMPROVEMENTS */
.sots-admin-list li {
  margin-bottom: 4px;
}
.sots-more-link {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: #275343;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.12s ease;
}

.sots-more-link:hover {
  background: #1e3e33;
  transform: translateY(-2px);
}
.sots-hero-btn-secondary {
  display: inline-block;
  margin-left: 0.75rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.sots-hero-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}
/* ================================
   SOTS Secondary Button (Pop-Out)
   ================================ */

.sots-hero-btn-secondary {
  display: inline-block;
  margin-left: 0.75rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #275343;      /* LOTSWS Deep Green */
  background: #ffffff;            /* White background for contrast */
  color: #275343 !important;      /* Dark text, highly visible */
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, 
              color 0.15s ease,
              transform 0.12s ease;
}

.sots-hero-btn-secondary:hover {
  background: #e5e5e5;            /* Light grey hover */
  color: #1d3e31 !important;      /* Slightly darker green on hover */
  transform: translateY(-2px);
}
/* =========================================
   SOTS Floating Mini Player (Draggable)
   ========================================= */

.sots-floating-player {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 320px;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 9999;
  border: 1px solid #cccccc;
  cursor: default;
}

.sots-floating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.75rem;
  border-bottom: 1px solid #e0e0e0;
  background: #f5f5f5;
  border-radius: 12px 12px 0 0;
  cursor: move;
}

.sots-floating-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #275343;
}

.sots-floating-close {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: #555;
}

.sots-floating-close:hover {
  color: #000;
}

.sots-floating-body {
  padding: 0.5rem 0.6rem 0.6rem 0.6rem;
}

.sots-floating-audio {
  width: 100%;
}
/* ==============================
   SOTS Track Media Styling
   ============================== */

/* Wrapper for image or video */
.sots-media {
  margin-bottom: 1rem;
}

/* Right-side media when used in description column */
.sots-media-right {
  margin-top: 1rem;
}

/* Cover art images */
.sots-media-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Responsive video container (YouTube, Vimeo, etc.) */
.sots-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* keeps 16:9 aspect ratio */
  margin-bottom: 1rem;
}

.sots-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.sots-song-description {
  background: #1a1a1a;
  color: #f3f3f3;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #333;
  line-height: 1.6;
}

.sots-song-description h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #444;
  padding-bottom: 8px;
}

.sots-song-description h3 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.sots-song-description .sots-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: #d4ffd0;
  margin-bottom: 20px;
}

.sots-performed-by {
  margin-top: 25px;
  text-align: right;
  font-size: 1.05rem;
  color: #c7f7ff;
}
/* ================================
   LOTSWS Founder Fuel Card Styles
   ================================ */

.lotsws-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* Title & Subtitle */
.lotsws-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2a4b32; /* LOTS deep green */
  margin-bottom: 4px;
}

.lotsws-subtitle {
  font-size: 1rem;
  color: #506b57;
  margin-bottom: 16px;
  font-weight: 500;
}

/* Meta Tags */
.lotsws-meta {
  margin-bottom: 20px;
}

.lotsws-tag {
  display: inline-block;
  background: #e6f3e9;
  color: #2f5a36;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-right: 8px;
  font-weight: 600;
}

/* Two Column Layout */
.lotsws-layout {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.lotsws-col {
  flex: 1 1 300px;
}

/* Headings inside columns */
.lotsws-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2a4b32;
  margin-bottom: 10px;
}

/* List styling */
.lotsws-list {
  margin: 0;
  padding-left: 18px;
}

.lotsws-list li {
  margin-bottom: 8px;
  line-height: 1.45;
  color: #333;
}

/* Footer */
.lotsws-footer {
  margin-top: 25px;
  padding-top: 12px;
  border-top: 1px solid #d9e5db;
  font-size: 0.85rem;
  color: #4d4d4d;
  text-align: center;
  font-weight: 500;
}

/* Responsive improvements */
@media (max-width: 600px) {
  .lotsws-title {
    font-size: 1.45rem;
  }

  .lotsws-layout {
    flex-direction: column;
  }

  .lotsws-card {
    padding: 18px;
  }
}
.marty-scale-block {
  background: #f4f8f4;
  border: 1px solid #d7e4d9;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
}

.marty-scale-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2a4b32;
  margin-bottom: 15px;
  text-align: left;
}

.marty-scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.marty-scale-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.marty-letter {
  background: #2a4b32;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.marty-label {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
}

.marty-score {
  font-weight: 700;
  font-size: 1rem;
  color: #2a4b32;
}

@media (max-width: 600px) {
  .marty-scale-grid {
    grid-template-columns: 1fr;
  }
}
