/* =========================================
   1. BASE TYPOGRAPHY OVERRIDES
   ========================================= */
[style*="font-size: 20px"], 
[style*="font-size:20px"] {
    line-height: 1.3 !important;
    display: block !important;
    padding-bottom: 0px !important;
}
[style*="font-size: 48px"], 
[style*="font-size:48px"] {
    line-height: 1.15 !important;
    display: block !important;
    margin: 0px !important;
    padding-bottom: 48px !important;
}
[style*="font-size: 18px"], 
[style*="font-size:18px"] {
    line-height: 1.4 !important;
    display: block !important;
    margin: 0px !important;
}

/* =========================================
   2. GLOBAL VARIABLES (NSA Partners Theme)
   ========================================= */
:root {
  --nsa-primary: #6C7368; /* Smoke Green (nsaa.in base) */
  --nsa-secondary: #F2F1F0; /* Off-White (nsaa.in base) */
  --nsa-highlight: #c2a673; /* Gold (PPTX Accent) */
  --text-light: #FFFFFF;
  --text-dark: #000000;
  --font-head: 'Georgia', serif;
  --font-body: 'Lato', sans-serif;
}

/* =========================================
   [PRUNED REDUNDANCY: DUPLICATE TYPOGRAPHY]
   The following block was an exact duplicate of Section 1.
   ========================================= */
/*
[style*="font-size: 20px"], 
[style*="font-size:20px"] {
    line-height: 1.3 !important;
    display: block !important;
    padding-bottom: 0px !important;
}
[style*="font-size: 48px"], 
[style*="font-size:48px"] {
    line-height: 1.15 !important;
    display: block !important;
    margin: 0px !important;
    padding-bottom: 48px !important;
}
[style*="font-size: 18px"], 
[style*="font-size:18px"] {
    line-height: 1.4 !important;
    display: block !important;
    margin: 0px !important;
}
*/

/* =========================================
   3. GLOBAL LAYOUT & GRIDS (nsaa.in Standard)
   ========================================= */
.nsa-table-wrapper {
  width: 100%;
  padding: 20px 0;
  background-color: var(--nsa-secondary);
  font-family: var(--font-body);
  color: var(--text-dark);
}

.nsa-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.nsa-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.nsa-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.nsa-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }

@media (max-width: 1024px) {
  .nsa-grid-5 { 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  }
}

/* =========================================
   4. GLOBAL COMPONENTS (Cards, Lists, Tabs)
   ========================================= */
.nsa-card {
  background: var(--nsa-secondary);
  border: 1px solid var(--nsa-primary);
  border-left: 5px solid var(--nsa-highlight);
  display: flex;
  flex-direction: column;
}

.nsa-card-header {
  background-color: var(--nsa-primary);
  color: var(--text-light);
  padding: 18px 25px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nsa-card-body {
  padding: 25px;
}

.nsa-list { list-style: none; padding: 0; margin: 0; }
.nsa-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.nsa-list li::before {
  content: '■'; 
  position: absolute;
  left: 0;
  color: var(--nsa-highlight);
  font-size: 0.75rem;
  top: 4px;
}

.nsa-kicker {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: normal;
  color: var(--nsa-secondary);
}

.nsa-tabs-container { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 15px; 
  margin-bottom: 30px; 
}

.nsa-tab-btn {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid var(--nsa-primary);
  color: #FFFFFF !important; 
  font-family: var(--font-head); 
  font-size: 1.25rem; 
  font-weight: bold;
  padding: 20px; 
  text-align: center; 
  cursor: pointer; 
  transition: all 0.3s ease;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  min-height: 160px;
  text-decoration: none;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.nsa-tab-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(108, 115, 104, 0.4); 
  z-index: -1;
  transition: all 0.3s ease;
}

.nsa-tab-btn:hover::before, .nsa-tab-btn.active::before {
  background-color: rgba(108, 115, 104, 0.85); 
}

.nsa-tab-btn:hover, .nsa-tab-btn.active {
  border-color: var(--nsa-highlight);
}

.nsa-tab-content { display: none; animation: fadeIn 0.5s ease-in-out; }
.nsa-tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.nsa-read-more-wrapper { text-align: center; margin: 30px 0 50px; }
.nsa-read-more-btn {
  background-color: transparent; 
  border: 2px solid var(--nsa-highlight);
  color: var(--nsa-highlight);
  padding: 12px 35px; 
  font-family: var(--font-body); 
  font-weight: bold; 
  font-size: 1rem;
  cursor: pointer; 
  transition: all 0.3s ease; 
  text-transform: uppercase; 
  letter-spacing: 1px;
}
.nsa-read-more-btn:hover { background-color: var(--nsa-highlight); color: #FFFFFF; }

.nsa-read-more-text { 
  display: none; 
  text-align: left; 
  background-color: #FFFFFF; 
  padding: 30px; 
  border: 1px solid var(--nsa-primary); 
  border-left: 5px solid var(--nsa-highlight);
  margin-top: 20px; 
  font-family: var(--font-body); 
  line-height: 1.7; 
  color: var(--text-dark); 
}
.nsa-read-more-text.expanded { display: block; animation: fadeIn 0.4s ease-in-out; }

.nsa-card-metric { text-align: center; }
.nsa-card-metric .nsa-card-header { justify-content: center; font-size: 1.8rem; }

/* =========================================
   5. SLIDE DECK AESTHETICS (Newly Merged)
   ========================================= */
.nsa-slide-wrapper {
  background-color: var(--nsa-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  padding: 3rem 2.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.nsa-slide-title {
  font-family: var(--font-head);
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.nsa-slide-subtitle {
  color: var(--nsa-highlight);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.nsa-text-gold { color: var(--nsa-highlight); }
.nsa-text-sm { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.nsa-footer-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.nsa-slide-card {
  background: rgba(242, 241, 240, 0.08);
  border-left: 5px solid var(--nsa-highlight);
  padding: 1.5rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.nsa-card-title {
  font-family: var(--font-head);
  color: var(--nsa-highlight);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nsa-slide-list { list-style: none; padding: 0; margin: 0; }
.nsa-slide-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.nsa-slide-list li::before {
  content: '■'; 
  position: absolute;
  left: 0;
  color: var(--nsa-highlight);
  font-size: 0.75rem;
  top: 4px;
}

.nsa-matrix-table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.9rem; }
.nsa-matrix-table th, .nsa-matrix-table td { padding: 12px; border: 1px solid rgba(255,255,255,0.15); text-align: left; }
.nsa-matrix-table th { background-color: rgba(0,0,0,0.25); color: var(--nsa-highlight); font-family: var(--font-head); }
.nsa-matrix-table td:nth-child(2) { color: var(--text-light); font-weight: bold; background-color: rgba(242, 241, 240, 0.05); }
.nsa-matrix-table td { color: rgba(255,255,255,0.7); }

/* =========================================
   [PRUNED CONFLICTS: LEGACY SNIPPETS]
   The following block contains classes that conflict with the 
   established nsaa.in global theme and have been disabled.
   ========================================= */
/*
:root {
  --nsa-smoke-green: #687971; 
  --nsa-smoke-green-dark: #4b5852;
  --nsa-off-white: #F7F7F2;
  --nsa-text-dark: #2c3330;
  --nsa-accent: #c2a673; 
  --nsa-border-radius: 6px;
}
.nsa-container {
  font-family: inherit;
  color: var(--nsa-text-dark);
  line-height: 1.6;
  padding: 2rem 0;
  background-color: var(--nsa-off-white);
}
.nsa-heading {
  color: var(--nsa-smoke-green-dark);
  margin-bottom: 1rem;
}
.nsa-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.nsa-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}
.nsa-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--nsa-border-radius);
  border-top: 4px solid var(--nsa-smoke-green);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.nsa-card-title {
  color: var(--nsa-smoke-green-dark);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.nsa-accent-text {
  color: var(--nsa-accent);
  font-weight: bold;
}
*/