/* ============================================================
   LUIS GAN REAL ESTATE GROUP — Design System
   Based on Figma Design Draft + Test Site Patterns
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Colors */
    --lg-blue-primary: #0345BF;
    --lg-blue-medium: #405FBA;
    --lg-blue-dark: #131E49;
    --lg-blue-darkest: #01031A;
    --lg-blue-hover: #2C4288;
  
    /* Gold / Accent */
    --lg-gold: #C2933C;
    --lg-gold-light: #ffca6e;
    --lg-gold-dark: #8F6A25;
    --lg-gold-border: #A48D5B;
  
    /* Neutrals */
    --lg-white: #FFFFFF;
    --lg-gray-50: #F9FAFB;
    --lg-gray-100: #F3F4F6;
    --lg-gray-200: #E5E7EB;
    --lg-gray-400: #9CA3AF;
    --lg-gray-500: #6A7282;
    --lg-gray-700: #4A5565;
    --lg-gray-900: #252525;
  
    /* Gradients */
    --lg-gradient-hero: linear-gradient(180deg, rgba(63, 94, 186, 0.68) 0%, rgba(1, 3, 26, 0.85) 54%);
    --lg-gradient-footer: linear-gradient(180deg, #405FBA 0%, #131E49 50%, #01031A 100%);
    --lg-gradient-cta: linear-gradient(135deg, #0345BF 0%, #131E49 100%);
    --lg-gradient-card: linear-gradient(0deg, #F8F9FA 100%, #FFFFFF 19%);
  
    /* Typography */
    --lg-font-display: 'Raleway', sans-serif;
    --lg-font-body: 'Roboto', sans-serif;
    --lg-font-accent: 'Times New Roman', serif;
  
    /* Font Sizes */
    --lg-text-xs: 12px;
    --lg-text-sm: 14px;
    --lg-text-base: 16px;
    --lg-text-lg: 18px;
    --lg-text-xl: 20px;
    --lg-text-2xl: 24px;
    --lg-text-3xl: 30px;
    --lg-text-4xl: 36px;
    --lg-text-5xl: 46px;
    --lg-text-6xl: 54px;
  
    /* Spacing */
    --lg-section-padding: 75px 0;
    --lg-section-padding-sm: 50px 0;
    --lg-container-max: 1320px;
    --lg-container-padding: 0 24px;
  
    /* Shadows */
    --lg-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --lg-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.05);
    --lg-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
    --lg-shadow-xl: 0 8px 30px rgba(0, 0, 0, 0.15);
  
    /* Border Radius */
    --lg-radius-sm: 8px;
    --lg-radius-md: 12px;
    --lg-radius-lg: 16px;
    --lg-radius-xl: 24px;
    --lg-radius-full: 9999px;
  
    /* Transitions */
    --lg-transition: all 0.3s ease;
  }
  
  /* --- Google Fonts Import --- */
  @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Roboto:wght@300;400;500;700&display=swap');
  
  /* --- Base Reset for Embedded Pages --- */
  .lg-page {
    font-family: var(--lg-font-body);
    font-size: var(--lg-text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--lg-gray-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .lg-page *,
  .lg-page *::before,
  .lg-page *::after {
    box-sizing: border-box;
  }
  
  .lg-page img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* --- Container --- */
  .lg-container {
    max-width: var(--lg-container-max);
    margin: 0 auto;
    padding: var(--lg-container-padding);
  }

  /* SPPB full-width override for HTML embed pages */
  .sppb-section .sppb-row-container:has(.lg-page) {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* --- Sections --- */
  .lg-section {
    padding: var(--lg-section-padding);
  }
  
  .lg-section--white {
    background-color: var(--lg-white);
  }
  
  .lg-section--light {
    background-color: var(--lg-gray-50);
  }
  
  .lg-section--blue {
    background: var(--lg-gradient-cta);
    color: var(--lg-white);
  }
  
  .lg-section--dark {
    background: var(--lg-gradient-footer);
    color: var(--lg-white);
  }
  
  /* --- Hero Banner (Inner Page) --- */
  .lg-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
  }
  
  .lg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lg-gradient-hero);
    z-index: 1;
  }
  
  .lg-hero .lg-container {
    position: relative;
    z-index: 2;
  }
  
  .lg-hero__title {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-6xl);
    font-weight: 800;
    color: var(--lg-white);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .lg-hero__subtitle {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-xl);
    font-weight: 400;
    color: var(--lg-gold-light);
    margin: 0;
  }
  
  /* --- Typography --- */
  .lg-page h1,
  .lg-page h2,
  .lg-page h3,
  .lg-page h4,
  .lg-page h5,
  .lg-page h6 {
    font-family: var(--lg-font-display);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    color: var(--lg-gray-900);
  }
  
  .lg-page h1 { font-size: var(--lg-text-6xl); }
  .lg-page h2 { font-size: var(--lg-text-5xl); }
  .lg-page h3 { font-size: var(--lg-text-4xl); }
  .lg-page h4 { font-size: var(--lg-text-2xl); }
  .lg-page h5 { font-size: var(--lg-text-xl); }
  
  .lg-section-title {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-5xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--lg-gray-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .lg-section-subtitle {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-lg);
    font-weight: 400;
    text-align: center;
    color: var(--lg-gray-500);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .lg-gold-text {
    color: var(--lg-gold);
  }
  
  .lg-blue-text {
    color: var(--lg-blue-primary);
  }
  
  /* --- Buttons --- */
  .lg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--lg-radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: var(--lg-transition);
    line-height: 1.4;
  }
  
  .lg-btn--gold {
    background-color: var(--lg-gold);
    color: var(--lg-white);
  }
  
  .lg-btn--gold:hover {
    background-color: var(--lg-gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--lg-shadow-md);
  }
  
  .lg-btn--blue {
    background-color: var(--lg-blue-primary);
    color: var(--lg-white);
  }
  
  .lg-btn--blue:hover {
    background-color: var(--lg-blue-hover);
    transform: translateY(-1px);
    box-shadow: var(--lg-shadow-md);
  }
  
  .lg-btn--outline {
    background: transparent;
    border: 2px solid var(--lg-gold);
    color: var(--lg-gold);
  }
  
  .lg-btn--outline:hover {
    background-color: var(--lg-gold);
    color: var(--lg-white);
  }
  
  .lg-btn--white {
    background-color: var(--lg-white);
    color: var(--lg-blue-primary);
  }
  
  .lg-btn--white:hover {
    background-color: var(--lg-gray-100);
    transform: translateY(-1px);
  }
  
  .lg-btn--lg {
    padding: 16px 36px;
    font-size: var(--lg-text-base);
  }
  
  /* --- Cards --- */
  .lg-card {
    background: var(--lg-white);
    border-radius: var(--lg-radius-lg);
    box-shadow: var(--lg-shadow-md);
    overflow: hidden;
    transition: var(--lg-transition);
  }
  
  .lg-card:hover {
    box-shadow: var(--lg-shadow-lg);
    transform: translateY(-4px);
  }
  
  .lg-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .lg-card__body {
    padding: 24px;
  }
  
  .lg-card__title {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-xl);
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .lg-card__text {
    color: var(--lg-gray-500);
    font-size: var(--lg-text-sm);
    line-height: 1.6;
  }
  
  /* --- Grid System --- */
  .lg-grid {
    display: grid;
    gap: 30px;
  }
  
  .lg-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid--4 { grid-template-columns: repeat(4, 1fr); }
  
  /* --- Flex Layouts --- */
  .lg-flex {
    display: flex;
    gap: 30px;
  }
  
  .lg-flex--center {
    align-items: center;
  }
  
  .lg-flex--between {
    justify-content: space-between;
  }
  
  .lg-flex--wrap {
    flex-wrap: wrap;
  }
  
  .lg-flex-1 { flex: 1; }
  .lg-flex-35 { flex: 0 0 35%; }
  .lg-flex-40 { flex: 0 0 40%; }
  .lg-flex-55 { flex: 0 0 55%; }
  .lg-flex-60 { flex: 0 0 60%; }
  .lg-flex-65 { flex: 0 0 65%; }
  
  /* --- Stat / Number Block --- */
  .lg-stat {
    text-align: center;
  }
  
  .lg-stat__number {
    font-family: var(--lg-font-accent);
    font-size: var(--lg-text-4xl);
    font-weight: 700;
    color: var(--lg-gold);
    line-height: 1.2;
  }
  
  .lg-stat__label {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-sm);
    font-weight: 500;
    color: var(--lg-gray-500);
    margin-top: 4px;
  }
  
  /* --- Divider --- */
  .lg-divider {
    width: 80px;
    height: 3px;
    background: var(--lg-gold);
    border: none;
    margin: 24px auto;
  }
  
  .lg-divider--left {
    margin-left: 0;
  }
  
  /* --- Testimonial Card --- */
  .lg-testimonial {
    background: var(--lg-white);
    border-radius: var(--lg-radius-lg);
    padding: 32px;
    box-shadow: var(--lg-shadow-md);
    position: relative;
  }
  
  .lg-testimonial__quote {
    font-size: var(--lg-text-base);
    color: var(--lg-gray-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .lg-testimonial__quote::before {
    content: '\201C';
    font-family: var(--lg-font-accent);
    font-size: 60px;
    color: var(--lg-gold);
    position: absolute;
    top: 12px;
    left: 24px;
    line-height: 1;
    opacity: 0.3;
  }
  
  .lg-testimonial__author {
    font-family: var(--lg-font-display);
    font-weight: 700;
    font-size: var(--lg-text-sm);
    color: var(--lg-blue-dark);
  }
  
  .lg-testimonial__stars {
    color: var(--lg-gold);
    font-size: var(--lg-text-lg);
    margin-bottom: 12px;
  }
  
  /* --- Team Member Card --- */
  .lg-team-card {
    text-align: center;
    background: var(--lg-white);
    border-radius: var(--lg-radius-lg);
    padding: 32px 24px;
    box-shadow: var(--lg-shadow-md);
    transition: var(--lg-transition);
  }
  
  .lg-team-card:hover {
    box-shadow: var(--lg-shadow-lg);
    transform: translateY(-4px);
  }
  
  .lg-page .lg-team-card__photo {
    object-position: center top;
    width: 160px;
    height: 160px !important;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--lg-gray-100);
  }
  
  .lg-team-card__name {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-xl);
    font-weight: 700;
    color: var(--lg-blue-dark);
    margin-bottom: 4px;
  }
  
  .lg-team-card__title {
    font-size: var(--lg-text-sm);
    color: var(--lg-gold);
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .lg-team-card__info {
    font-size: var(--lg-text-sm);
    color: var(--lg-gray-500);
    line-height: 1.8;
  }
  
  .lg-team-card__info a {
    color: var(--lg-blue-primary);
    text-decoration: none;
  }
  
  .lg-team-card__info a:hover {
    color: var(--lg-gold);
  }
  
  /* --- Forms --- */
  .lg-form-group {
    margin-bottom: 20px;
  }
  
  .lg-form-label {
    display: block;
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-sm);
    font-weight: 600;
    color: var(--lg-gray-700);
    margin-bottom: 6px;
  }
  
  .lg-form-input,
  .lg-form-select,
  .lg-form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--lg-font-body);
    font-size: var(--lg-text-base);
    color: var(--lg-gray-900);
    background: var(--lg-white);
    border: 1px solid var(--lg-gray-200);
    border-radius: var(--lg-radius-sm);
    transition: var(--lg-transition);
    outline: none;
  }
  
  .lg-form-input:focus,
  .lg-form-select:focus,
  .lg-form-textarea:focus {
    border-color: var(--lg-blue-primary);
    box-shadow: 0 0 0 3px rgba(3, 69, 191, 0.1);
  }
  
  .lg-form-textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* --- CTA Banner --- */
  .lg-cta {
    background: var(--lg-gradient-cta);
    padding: 60px 0;
    text-align: center;
    color: var(--lg-white);
  }
  
  .lg-cta__title {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-4xl);
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--lg-white) !important;
  }
  
  .lg-cta__text {
    font-size: var(--lg-text-lg);
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* --- Icon Feature Box --- */
  .lg-feature {
    text-align: center;
    padding: 32px 24px;
  }
  
  .lg-feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--lg-gradient-cta);
    border-radius: var(--lg-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lg-white);
    font-size: 28px;
  }
  
  .lg-feature__title {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-xl);
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .lg-feature__text {
    color: var(--lg-gray-500);
    font-size: var(--lg-text-sm);
    line-height: 1.7;
  }
  
  /* --- Breadcrumb --- */
  .lg-breadcrumb {
    padding: 16px 0;
    font-size: var(--lg-text-sm);
    color: var(--lg-gray-500);
  }
  
  .lg-breadcrumb a {
    color: var(--lg-blue-primary);
    text-decoration: none;
  }
  
  .lg-breadcrumb a:hover {
    color: var(--lg-gold);
  }
  
  .lg-breadcrumb span {
    margin: 0 8px;
    color: var(--lg-gray-400);
  }
  
  /* --- Value Props Row --- */
  .lg-values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .lg-value-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--lg-white);
    border-radius: var(--lg-radius-full);
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-sm);
    font-weight: 600;
    color: var(--lg-blue-dark);
    box-shadow: var(--lg-shadow-sm);
  }
  
  .lg-value-badge__icon {
    color: var(--lg-gold);
    font-size: var(--lg-text-lg);
  }
  
  /* --- Responsive --- */
  @media (max-width: 1200px) {
    .lg-container {
      padding: 0 32px;
    }
  }
  
  @media (max-width: 992px) {
    .lg-section {
      padding: var(--lg-section-padding-sm);
    }
  
    .lg-hero__title {
      font-size: var(--lg-text-4xl);
    }
  
    .lg-section-title {
      font-size: var(--lg-text-4xl);
    }
  
    .lg-grid--3 {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .lg-grid--4 {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .lg-flex {
      flex-direction: column;
    }
  
    .lg-flex-35,
    .lg-flex-40,
    .lg-flex-55,
    .lg-flex-60,
    .lg-flex-65 {
      flex: 1 1 100%;
    }
  
    .lg-cta__title {
      font-size: var(--lg-text-3xl);
    }
  }
  
  @media (max-width: 768px) {
    .lg-hero {
      padding: 70px 0 50px;
    }
  
    .lg-hero__title {
      font-size: var(--lg-text-3xl);
    }
  
    .lg-section-title {
      font-size: var(--lg-text-3xl);
    }
  
    .lg-grid--2,
    .lg-grid--3,
    .lg-grid--4 {
      grid-template-columns: 1fr;
    }
  
    .lg-btn--lg {
      padding: 14px 28px;
      font-size: var(--lg-text-sm);
    }
  
    .lg-testimonial {
      padding: 24px;
    }
  }
  
  @media (max-width: 576px) {
    .lg-container {
      padding: 0 16px;
    }
  
    .lg-hero__title {
      font-size: var(--lg-text-2xl);
    }
  
    .lg-section-title {
      font-size: var(--lg-text-2xl);
    }
  
    .lg-section {
      padding: 40px 0;
    }
  }

  /* ============================================================
     BLOG ARTICLE DETAIL — Styled Layout
     ============================================================ */

  .lg-article-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 60px;
  }

  /* Article Header Banner */
  .lg-article-header-banner {
    background: var(--lg-gradient-cta);
    padding: 48px 40px;
    border-radius: var(--lg-radius-lg);
    margin-bottom: 32px;
    text-align: center;
  }

  /* Featured Badge */
  .lg-article-badge {
    display: inline-block;
    background: var(--lg-gold);
    color: var(--lg-white);
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: var(--lg-radius-full);
    margin-bottom: 16px;
  }

  /* Article Title */
  .lg-article-title {
    font-family: var(--lg-font-display) !important;
    font-size: var(--lg-text-4xl) !important;
    font-weight: 800 !important;
    color: var(--lg-white) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  /* Category label under title */
  .lg-article-category {
    display: inline-block;
  }

  .lg-article-category a {
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-sm);
    font-weight: 600;
    color: var(--lg-gold-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .lg-article-category a:hover {
    color: var(--lg-white);
  }

  /* Featured Image */
  .lg-article-image {
    margin-bottom: 32px;
  }

  .lg-article-image img {
    width: 100%;
    border-radius: var(--lg-radius-lg);
    box-shadow: var(--lg-shadow-md);
  }

  /* Article Meta */
  .lg-article-meta {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lg-gray-100);
  }

  .lg-article-meta .article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-sm);
    color: var(--lg-gray-500);
  }

  .lg-article-meta .article-info > span,
  .lg-article-meta .article-info > dl {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .lg-article-meta .article-info dd {
    margin: 0;
  }

  .lg-article-meta .article-info a {
    color: var(--lg-blue-primary);
    text-decoration: none;
    font-weight: 500;
  }

  .lg-article-meta .article-info a:hover {
    color: var(--lg-gold);
  }

  .lg-article-meta--below {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--lg-gray-100);
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Article Body */
  .lg-article-body {
    font-family: var(--lg-font-body);
    font-size: var(--lg-text-base);
    line-height: 1.9;
    color: var(--lg-gray-700);
  }

  .lg-article-body p {
    margin-bottom: 20px;
  }

  .lg-article-body h2,
  .lg-article-body h3,
  .lg-article-body h4 {
    font-family: var(--lg-font-display);
    color: var(--lg-blue-dark);
    margin-top: 36px;
    margin-bottom: 16px;
  }

  .lg-article-body h2 {
    font-size: var(--lg-text-3xl);
  }

  .lg-article-body h3 {
    font-size: var(--lg-text-2xl);
  }

  .lg-article-body img {
    border-radius: var(--lg-radius-md);
    margin: 24px 0;
    box-shadow: var(--lg-shadow-sm);
  }

  .lg-article-body blockquote {
    border-left: 4px solid var(--lg-gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--lg-gray-50);
    border-radius: 0 var(--lg-radius-sm) var(--lg-radius-sm) 0;
    font-style: italic;
    color: var(--lg-gray-700);
  }

  .lg-article-body ul,
  .lg-article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
  }

  .lg-article-body li {
    margin-bottom: 8px;
  }

  .lg-article-body a {
    color: var(--lg-blue-primary);
    text-decoration: underline;
    text-decoration-color: rgba(3, 69, 191, 0.3);
    text-underline-offset: 3px;
    transition: var(--lg-transition);
  }

  .lg-article-body a:hover {
    color: var(--lg-gold);
    text-decoration-color: var(--lg-gold);
  }

  /* Social Share */
  .lg-article-share {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lg-gray-100);
  }

  /* Tags */
  .lg-article-tags {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--lg-gray-100);
  }

  .lg-article-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .lg-article-tags .tag-badge,
  .lg-article-tags .label {
    display: inline-block;
    padding: 4px 14px;
    background: var(--lg-gray-50);
    border: 1px solid var(--lg-gray-200);
    border-radius: var(--lg-radius-full);
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-xs);
    font-weight: 600;
    color: var(--lg-gray-700);
    text-decoration: none;
    transition: var(--lg-transition);
  }

  .lg-article-tags .tag-badge:hover,
  .lg-article-tags .label:hover {
    background: var(--lg-blue-primary);
    color: var(--lg-white);
    border-color: var(--lg-blue-primary);
  }

  /* Back to Blog */
  .lg-article-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--lg-gray-100);
    text-align: center;
  }

  .lg-article-back .lg-btn {
    gap: 6px;
  }

  /* Related Articles Section */
  .lg-related-articles {
    padding: 60px 0;
    background: var(--lg-gray-50);
    margin-top: 0;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .lg-article-detail {
      padding: 0 16px 40px;
    }

    .lg-article-title {
      font-size: var(--lg-text-2xl) !important;
    }

    .lg-article-header-banner {
      padding: 32px 24px;
    }

    .lg-article-body {
      font-size: var(--lg-text-sm);
    }
  }

  /* --- Language Switcher (Header) --- */
  .mod-languages__list.lang-inline {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
  }

  .mod-languages__list.lang-inline li a {
    display: inline-block;
    padding: 4px 10px;
    font-family: var(--lg-font-display);
    font-size: var(--lg-text-sm);
    font-weight: 600;
    color: var(--lg-gray-500);
    text-decoration: none;
    border-radius: var(--lg-radius-sm);
    transition: var(--lg-transition);
    line-height: 1.4;
  }

  .mod-languages__list.lang-inline li a:hover {
    color: var(--lg-gold);
  }

  .mod-languages__list.lang-inline li.lang-active {
    background: var(--lg-gold) !important;
  }

  .mod-languages__list.lang-inline li.lang-active a {
    /* background: var(--lg-gold); */
    color: var(--lg-white);
  }

  .mod-languages__list.lang-inline li.lang-active a:hover {
    /* background: var(--lg-gold-dark); */
    color: var(--lg-white);
  }

  /* --- Footer Links --- */
  #sp-footer a {
    color: var(--lg-white) !important;
  }

  #sp-footer a:hover {
    color: var(--lg-gold-light) !important;
  }
  