/*
  Schloss Lüttingen — Pure Luxury HTML5 Architecture Stylesheet v9.0 (with Fullscreen Lightbox)
*/

:root {
  --gold:          #C9A84C;
  --gold-light:    #E5D193;
  --gold-dark:     #9A7E32;
  
  --ink:           #0D0B0A;
  --slate:         #181412;
  --stone:         #2B2420;
  --parchment:     #F8F6F0;
  --parchment-dark:#EFEBE2;
  --sandstone:     #F7F4EE;
  --white:         #FFFFFF;
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
}

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

html, body {
  background-color: var(--ink);
  color: var(--parchment);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

.sl-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FLOATING TRANSPARENT HEADER (TOP OF PAGE) */
.sl-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: none !important;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

/* SCROLLED HEADER STATE (> 40px) */
.sl-header.scrolled {
  background: rgba(18, 14, 12, 0.92) !important;
  background-color: rgba(18, 14, 12, 0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5) !important;
}

.sl-header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sl-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.sl-header-logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  mix-blend-mode: normal !important;
}

.sl-header-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.sl-nav {
  margin: 0 20px;
}

.sl-nav-list {
  display: flex;
  list-style: none;
  gap: 22px;
  align-items: center;
  white-space: nowrap !important;
}

.sl-nav-list li {
  white-space: nowrap !important;
}

/* MOBILE TOGGLE BUTTON */
.sl-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-size: 22px;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sl-mobile-toggle:hover {
  background: rgba(201, 168, 76, 0.15);
}

@media (max-width: 1024px) {
  .sl-nav-list {
    display: none;
  }
  .sl-mobile-toggle {
    display: block;
  }
  .sl-nav-list.sl-nav-mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(18, 14, 12, 0.98) !important;
    backdrop-filter: blur(18px) !important;
    padding: 24px !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.35) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7) !important;
    gap: 16px !important;
  }
  .sl-header-cta {
    display: none;
  }
}

.sl-nav-list a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(248, 246, 240, 0.95);
  white-space: nowrap !important;
  transition: var(--transition-fast);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.sl-nav-list a:hover,
.sl-nav-list a.active {
  color: var(--gold);
}

/* DROPDOWN SUBMENU STYLING */
.sl-dropdown-wrap {
  position: relative;
}

.sl-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.sl-arrow {
  font-size: 10px;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.sl-dropdown-wrap:hover .sl-arrow {
  transform: rotate(180deg);
}

.sl-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 210px;
  background: rgba(18, 14, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 10000;
}

.sl-dropdown-wrap:hover .sl-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sl-dropdown-menu li {
  padding: 0;
  margin: 0;
  display: block;
}

.sl-dropdown-menu a {
  display: block;
  padding: 10px 22px !important;
  color: rgba(248, 246, 240, 0.9) !important;
  font-size: 13.5px !important;
  transition: all 0.2s ease !important;
}

.sl-dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.15) !important;
  color: #C9A84C !important;
}

.sl-btn-gold-sm {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.sl-btn-gold-sm:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* INTERACTIVE TAB SYSTEM FOR PLANUNG.HTML */
.sl-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sl-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: rgba(248, 246, 240, 0.9);
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sl-tab-btn:hover,
.sl-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1410;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.sl-tab-content {
  display: none;
}

.sl-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sl-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.sl-plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sl-plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

.sl-plan-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 10px;
  cursor: zoom-in;
}

.sl-plan-card h4 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 20px;
  margin-top: 14px;
}

/* LUXURY LIGHTBOX OVERLAY */
.sl-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 8, 7, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 30px;
}

.sl-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.sl-lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 42px;
  color: var(--gold);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
  user-select: none;
}

.sl-lightbox-close:hover {
  color: var(--white);
  transform: scale(1.15);
}

.sl-lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  background: #FFFFFF;
}

.sl-lightbox-caption {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 20px;
  margin-top: 18px;
  text-align: center;
  max-width: 800px;
}

/* PAGE HERO (FOR SUBPAGES) */
.sl-page-hero {
  padding: 170px 20px 65px 20px;
  background: linear-gradient(180deg, #181412 0%, #0D0B0A 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  text-align: center;
}

.sl-page-title {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 12px;
}

.sl-page-sub {
  font-size: 18px;
  color: rgba(248, 246, 240, 0.85);
  max-width: 750px;
  margin: 0 auto;
}

/* RICH TEXT TYPOGRAPHY FOR SUBPAGES */
.sl-content-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 45px;
}

.sl-rich-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(248, 246, 240, 0.92);
}

.sl-rich-text h2 {
  font-size: 30px;
  color: var(--gold);
  margin-top: 35px;
  margin-bottom: 16px;
}

.sl-rich-text h3 {
  font-size: 24px;
  color: var(--gold-light);
  margin-top: 25px;
  margin-bottom: 14px;
}

.sl-rich-text ul, .sl-rich-text ol {
  margin-left: 28px;
  margin-bottom: 24px;
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.92);
}

.sl-rich-text li {
  margin-bottom: 8px;
}

.sl-rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  cursor: zoom-in;
}

/* HERO VIDEO SECTION */
.sl-hero-video-section {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  background-color: #0D0B0A;
  color: #FFFFFF;
  padding: 140px 20px 70px 20px;
}

.sl-hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.sl-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95) contrast(1.02);
}

.sl-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 11, 10, 0.25) 0%, rgba(13, 11, 10, 0.1) 45%, rgba(13, 11, 10, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}

.sl-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  text-align: center;
  padding: 24px 30px;
  margin: 0 auto;
}

.sl-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.sl-hero-title {
  font-size: 62px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.8);
}

.sl-hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.sl-hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.sl-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sl-btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
  border: 1px solid var(--gold);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.sl-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.5);
}

.sl-btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  background: rgba(13, 11, 10, 0.4);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.sl-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* INVESTMENT SPECS GRID SECTION */
.sl-section-dark {
  background-color: var(--ink);
  color: var(--white);
  padding: 95px 20px;
}

.sl-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.sl-tag {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}

.sl-title {
  font-size: 42px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.sl-subtitle {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.88;
}

.sl-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.sl-spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-fast);
}

.sl-spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

.sl-spec-val {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 8px;
}

.sl-spec-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sl-trust-box {
  background: rgba(201, 168, 76, 0.08);
  border-left: 4px solid var(--gold);
  padding: 36px;
  border-radius: 0 8px 8px 0;
  margin-top: 50px;
}

.sl-trust-box h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.sl-trust-box p {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* CUSTOM LUXURY FOOTER */
.sl-footer {
  background-color: #181412;
  color: #F8F6F0;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  padding: 80px 20px 30px 20px;
}

.sl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .sl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .sl-footer-grid {
    grid-template-columns: 1fr;
  }
}

.sl-footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.sl-footer-brand-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 246, 240, 0.78);
  max-width: 380px;
}

.sl-footer-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #C9A84C;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.sl-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sl-footer-links li {
  margin-bottom: 12px;
}

.sl-footer-links a {
  color: rgba(248, 246, 240, 0.85);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sl-footer-links a:hover {
  color: #C9A84C;
}

.sl-footer-contact-item {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(248, 246, 240, 0.85);
  margin-bottom: 12px;
}

.sl-footer-contact-item strong {
  color: #C9A84C;
}

.sl-footer-contact-item a {
  color: rgba(248, 246, 240, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.sl-footer-contact-item a:hover {
  color: #C9A84C;
}

.sl-footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
  color: rgba(248, 246, 240, 0.6);
}

/* ROBUST MOBILE RESPONSIVE OVERHAUL (< 768px) */
@media (max-width: 768px) {
  .sl-page-hero {
    padding: 145px 16px 40px 16px !important;
  }

  .sl-page-title {
    font-size: 30px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .sl-page-sub {
    font-size: 15.5px !important;
    line-height: 1.5 !important;
  }

  .sl-hero-title {
    font-size: 36px !important;
    line-height: 1.15 !important;
  }

  .sl-hero-sub {
    font-size: 16px !important;
  }

  .sl-title {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }

  .sl-subtitle {
    font-size: 15.5px !important;
  }

  .sl-tabs-nav {
    gap: 8px !important;
  }

  .sl-tab-btn {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }

  /* COLLAPSE ALL 2-COLUMN GRIDS ON MOBILE TO SINGLE COLUMN */
  .sl-feature-row,
  .sl-dual-image-grid,
  .sl-facts-showcase-grid,
  .sl-photos-gallery-grid,
  .sl-contact-cards-grid,
  .sl-specs-grid,
  .sl-highlights-grid,
  .sl-plans-grid,
  .sl-footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
  }

  .sl-feature-img {
    order: 2 !important;
    width: 100% !important;
  }

  .sl-feature-text {
    order: 1 !important;
    width: 100% !important;
  }

  .sl-feature-text h2,
  .sl-rich-text h2 {
    font-size: 23px !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
    word-break: break-word !important;
  }

  .sl-feature-img img,
  .sl-img-card img {
    height: 230px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .sl-photos-gallery-grid img {
    height: 200px !important;
    width: 100% !important;
    object-fit: cover !important;
    grid-row: auto !important;
  }

  .sl-dom-title {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }

  .sl-dom-text {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .sl-content-box,
  .sl-specs-list-box {
    padding: 24px 18px !important;
  }
}

/* STRICT SVG ICON SIZING FIX (v13.0) */
svg {
  max-width: 100%;
}

svg.sl-hl-icon,
svg.sl-card-svg,
.sl-hl-icon,
.sl-card-svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  display: block !important;
  margin: 0 auto !important;
  flex-shrink: 0 !important;
}

.sl-hl-icon-wrap,
.sl-card-svg-wrap {
  width: 56px !important;
  height: 56px !important;
  margin: 0 auto 16px auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(201, 168, 76, 0.12) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  box-sizing: border-box !important;
}

/* ==========================================================================
   8 HIGHLIGHTS GRID (DESKTOP & TABLET RECOVERY v14.0)
   ========================================================================== */
.sl-highlights-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.sl-highlight-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  border-radius: 10px !important;
  padding: 26px 20px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  transition: all 0.3s ease !important;
}

.sl-highlight-card:hover {
  transform: translateY(-4px) !important;
  border-color: #C9A84C !important;
  background: rgba(201, 168, 76, 0.08) !important;
}

.sl-highlight-card h3 {
  font-family: var(--font-serif) !important;
  font-size: 20px !important;
  color: var(--gold) !important;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

.sl-highlight-card p {
  font-size: 14px !important;
  color: rgba(248, 246, 240, 0.85) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .sl-highlights-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
