
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Primary Colors - Canadian Financial Theme */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-primary-light: #3b82f6;
  --color-secondary: #059669;
  --color-secondary-dark: #047857;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  
  /* Background Colors */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #0f172a;
  --color-bg-quaternary: #1e293b;
  
  /* Text Colors */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-light: #f1f5f9;
  --color-text-muted: #64748b;
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #0ea5e9;
  
  /* Border Colors */
  --color-border-light: #e2e8f0;
  --color-border-dark: #334155;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Font Sizes */
  --fs-h1: 3.75rem;
  --fs-h2: 3rem;
  --fs-h3: 2.25rem;
  --fs-h4: 1.875rem;
  --fs-h5: 1.5rem;
  --fs-h6: 1.25rem;
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-body-sm: 0.875rem;
  --fs-body-xs: 0.75rem;
  
  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  
  /* Icon Sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.5rem;
  --icon-md: 2rem;
  --icon-lg: 3rem;
  --icon-xl: 4rem;
  --icon-2xl: 5rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  
  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ===== Base Styles ===== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: var(--fw-regular);
  overflow-x: hidden;
}

/* ===== Typography ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

a {
  text-decoration: none;
  transition: color var(--transition-base), background-color var(--transition-base);
}

strong {
  font-weight: var(--fw-bold);
}

em {
  font-style: italic;
}

/* ===== Container ===== */

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  font-family: var(--font-primary);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: var(--fs-body);
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-accent:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background-color: rgba(37, 99, 235, 0.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-body-xs);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: var(--fs-body-lg);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== Sections ===== */

section {
  overflow: hidden;
}

.section-padding {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
}

/* ===== Cards ===== */

.card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.75rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .card-icon {
    width: 4rem;
    height: 4rem;
  }
}

.card-icon i {
  font-size: var(--icon-lg);
}

.card-title {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .card-title {
    font-size: var(--fs-h5);
  }
}

.card-description {
  font-size: var(--fs-body-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card-description {
    font-size: var(--fs-body);
  }
}

/* ===== Grids ===== */

.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===== Flex Utilities ===== */

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  align-items: center;
  justify-content: space-between;
}

.gap-xs {
  gap: var(--space-xs);
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.gap-2xl {
  gap: var(--space-2xl);
}

/* ===== Icons ===== */

i[class*="fas"],
i[class*="fab"],
i[class*="far"] {
  display: inline-block;
}

i.icon-xs {
  font-size: var(--icon-xs);
}

i.icon-sm {
  font-size: var(--icon-sm);
}

i.icon-md {
  font-size: var(--icon-md);
}

i.icon-lg {
  font-size: var(--icon-lg);
}

i.icon-xl {
  font-size: var(--icon-xl);
}

i.icon-2xl {
  font-size: var(--icon-2xl);
}

/* ===== Utility Classes ===== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

.hidden { display: none; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.no-wrap {
  white-space: nowrap;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== Lists ===== */

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
}

/* ===== Blockquote ===== */

blockquote {
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--color-primary);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

/* ===== Code ===== */

code {
  background-color: var(--color-bg-secondary);
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--color-accent-dark);
}

pre {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

pre code {
  background-color: transparent;
  padding: 0;
  color: var(--color-text-primary);
}

/* ===== Forms ===== */

input,
textarea,
select {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

.form-group {
  margin-bottom: var(--space-lg);
}

/* ===== Tables ===== */

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

th, td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
}

th {
  background-color: var(--color-bg-secondary);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

tr:hover {
  background-color: var(--color-bg-secondary);
}

/* ===== Scrollbar Styling ===== */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* ===== Selection ===== */

::selection {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

/* ===== Animations ===== */

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in {
  animation: fade-in var(--transition-base) ease-in-out;
}

.animate-slide-in-up {
  animation: slide-in-up var(--transition-slow) ease-in-out;
}

.animate-slide-in-down {
  animation: slide-in-down var(--transition-slow) ease-in-out;
}

.animate-slide-in-left {
  animation: slide-in-left var(--transition-slow) ease-in-out;
}

.animate-slide-in-right {
  animation: slide-in-right var(--transition-slow) ease-in-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
}

/* ===== Responsive Typography ===== */

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  h6 {
    font-size: 1rem;
  }

  p {
    font-size: var(--fs-body-sm);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }
}

/* ===== Print Styles ===== */

@media print {
  body {
    background-color: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }

  button,
  .btn {
    border: 1px solid black;
  }

  img {
    max-width: 100%;
  }
}
/* ========================================
     Header Component - CSS Isolation
     ======================================== */

  .header {
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border-light);
    position: static;
    width: 100%;
    z-index: var(--z-sticky);
  }

  .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  /* ========================================
     Logo Styling
     ======================================== */

  .header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    font-size: 1.5rem;
    transition: transform var(--transition-base);
  }

  .header-logo:hover {
    transform: scale(1.05);
  }

  .header-logo:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-md);
  }

  .logo-text {
    color: var(--color-primary);
    letter-spacing: -0.5px;
  }

  .logo-accent {
    color: var(--color-secondary);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ========================================
     Desktop Navigation
     ======================================== */

  .header-nav {
    display: none;
    flex-direction: row;
    gap: var(--space-lg);
    align-items: center;
  }

  .header-nav-item {
    color: var(--color-text-primary);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-medium);
    transition: color var(--transition-base);
    position: relative;
    padding-bottom: 4px;
  }

  .header-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
  }

  .header-nav-item:hover {
    color: var(--color-primary);
  }

  .header-nav-item:hover::after {
    width: 100%;
  }

  .header-nav-item:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
  }

  /* ========================================
     Contact Button
     ======================================== */

  .header-contact-btn {
    display: none;
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-semibold);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    cursor: pointer;
  }

  .header-contact-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .header-contact-btn:active {
    transform: translateY(0);
  }

  .header-contact-btn:focus {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
  }

  /* ========================================
     Mobile Menu Toggle Button
     ======================================== */

  .header-mobile-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
    transition: transform var(--transition-base);
  }

  .header-mobile-toggle:hover {
    transform: scale(1.1);
  }

  .header-mobile-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
  }

  .hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
  }

  .header-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .header-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* ========================================
     Mobile Menu
     ======================================== */

  .header-mobile-menu {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    background-color: var(--color-bg-secondary);
  }

  .header-mobile-menu.active {
    max-height: 600px;
  }

  .header-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: var(--space-md) var(--space-md);
  }

  .header-mobile-nav-item {
    color: var(--color-text-primary);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    font-weight: var(--fw-medium);
    padding: var(--space-md) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-base), color var(--transition-base);
    display: block;
  }

  .header-mobile-nav-item:hover {
    background-color: var(--color-border-light);
    color: var(--color-primary);
  }

  .header-mobile-nav-item:active {
    background-color: var(--color-border-light);
  }

  .header-mobile-nav-item:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  .header-mobile-contact-btn {
    background-color: var(--color-primary);
    color: var(--color-bg-primary);
    padding: var(--space-md) var(--space-md);
    margin: var(--space-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    text-align: center;
    transition: all var(--transition-base);
    display: block;
    border: 2px solid transparent;
    cursor: pointer;
  }

  .header-mobile-contact-btn:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.02);
  }

  .header-mobile-contact-btn:active {
    transform: scale(0.98);
  }

  .header-mobile-contact-btn:focus {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
  }

  /* ========================================
     Responsive Design - Tablet & Desktop
     ======================================== */

  @media (min-width: 768px) {
    .header-container {
      height: 80px;
      padding: 0 var(--space-lg);
    }

    .header-logo {
      font-size: 1.75rem;
    }

    .logo-accent {
      font-size: 1.4rem;
    }

    /* Show desktop navigation */
    .header-nav {
      display: flex;
    }

    /* Show desktop contact button */
    .header-contact-btn {
      display: block;
    }

    /* Hide mobile toggle */
    .header-mobile-toggle {
      display: none;
    }

    /* Hide mobile menu */
    .header-mobile-menu {
      display: none;
    }
  }

  @media (min-width: 1024px) {
    .header-container {
      height: 90px;
      gap: var(--space-2xl);
    }

    .header-logo {
      font-size: 2rem;
      min-width: fit-content;
    }

    .logo-accent {
      font-size: 1.6rem;
    }

    .header-nav {
      flex: 1;
      gap: var(--space-2xl);
    }

    .header-nav-item {
      font-size: var(--fs-body-sm);
    }

    .header-contact-btn {
      padding: 0.875rem 2rem;
      font-size: var(--fs-body-sm);
      white-space: nowrap;
    }
  }

  /* ========================================
     Accessibility & Focus States
     ======================================== */

  @media (prefers-reduced-motion: reduce) {
    .header-logo,
    .header-nav-item,
    .header-contact-btn,
    .header-mobile-toggle,
    .hamburger-line,
    .header-mobile-menu,
    .header-mobile-nav-item,
    .header-mobile-contact-btn {
      transition: none;
    }
  }

    /* ===== Main Page Styles ===== */

  .main-page {
    width: 100%;
    background-color: var(--color-bg-primary);
  }

  /* ===== Hero Section ===== */

  .page .hero-section {
    background-color: var(--color-bg-tertiary);
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .hero-section {
      padding: 6rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .hero-section {
      padding: 8rem 0;
    }
  }

  .page .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .page .hero-content {
      flex-direction: row;
      gap: 4rem;
      align-items: center;
    }
  }

  .page .hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .page .hero-section h1 {
    color: var(--color-text-light);
    font-size: 2.25rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .page .hero-section h1 {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .page .hero-section h1 {
      font-size: 3.5rem;
    }
  }

  .page .hero-section p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .page .hero-section p {
      font-size: 1.125rem;
    }
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .hero-ctas {
      flex-direction: row;
      gap: 1.5rem;
    }
  }

  .page .hero-section .btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
  }

  .page .hero-section .btn-outline:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-tertiary);
  }

  .hero-image {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
    max-height: 400px;
  }

  /* ===== Featured Posts Section ===== */

  .page .featured-posts-section {
    background-color: var(--color-bg-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .featured-posts-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .featured-posts-section {
      padding: 6rem 0;
    }
  }

  .page .featured-posts-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .page .featured-posts-content {
      gap: 3rem;
    }
  }

  .page .section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page .section-header h2 {
    color: var(--color-text-primary);
    font-size: 2rem;
  }

  @media (min-width: 768px) {
    .page .section-header h2 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .page .section-header h2 {
      font-size: 3rem;
    }
  }

  .page .section-header p {
    color: var(--color-text-secondary);
    font-size: 1rem;
  }

  @media (min-width: 768px) {
    .page .section-header p {
      font-size: 1.125rem;
    }
  }

  .posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .posts-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .posts-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .post-card {
      gap: 1.5rem;
    }
  }

  .post-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .post-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--color-bg-tertiary);
  }

  @media (min-width: 768px) {
    .post-image-wrapper {
      height: 220px;
    }
  }

  .post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .post-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  @media (min-width: 768px) {
    .post-card-content {
      padding: 1.5rem;
      gap: 1.5rem;
    }
  }

  .post-card h3 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-card h3 {
      font-size: 1.5rem;
    }
  }

  .post-card p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-card p {
      font-size: 1rem;
    }
  }

  .posts-footer {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .posts-footer {
      margin-top: 2rem;
    }
  }

  /* ===== How It Works Section ===== */

  .page .how-it-works-section {
    background-color: var(--color-bg-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .how-it-works-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .how-it-works-section {
      padding: 6rem 0;
    }
  }

  .page .how-it-works-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .page .how-it-works-content {
      gap: 3rem;
    }
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .step-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .step-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .step-number {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    right: 1rem;
  }

  .step-card h3 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    padding-right: 2rem;
  }

  @media (min-width: 768px) {
    .step-card h3 {
      font-size: 1.5rem;
    }
  }

  .step-card p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .step-card p {
      font-size: 1rem;
    }
  }

  .step-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    color: white;
  }

  .step-icon i {
    font-size: 1.5rem;
  }

  /* ===== Features Section ===== */

  .page .features-section {
    background-color: var(--color-bg-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .features-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .features-section {
      padding: 6rem 0;
    }
  }

  .page .features-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .page .features-content {
      gap: 3rem;
    }
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
  }

  @media (min-width: 768px) {
    .feature-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-lg);
  }

  @media (min-width: 768px) {
    .feature-icon {
      width: 3.5rem;
      height: 3.5rem;
    }
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .feature-card h3 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
  }

  @media (min-width: 768px) {
    .feature-card h3 {
      font-size: 1.5rem;
    }
  }

  .feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .feature-card p {
      font-size: 1rem;
    }
  }

  /* ===== Benefits Section ===== */

  .page .benefits-section {
    background-color: var(--color-bg-quaternary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .benefits-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .benefits-section {
      padding: 6rem 0;
    }
  }

  .page .benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .page .benefits-content {
      flex-direction: row;
      gap: 4rem;
      align-items: center;
    }
  }

  .benefits-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .page .benefits-section h2 {
    color: var(--color-text-light);
    font-size: 2rem;
  }

  @media (min-width: 768px) {
    .page .benefits-section h2 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .page .benefits-section h2 {
      font-size: 3rem;
    }
  }

  .page .benefits-section p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .page .benefits-section p {
      font-size: 1.125rem;
    }
  }

  .benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .benefits-list {
      gap: 1.5rem;
    }
  }

  .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
  }

  .benefit-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
    margin-top: 0.25rem;
  }

  .benefit-text {
    color: var(--color-text-light);
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .benefit-text {
      font-size: 1rem;
    }
  }

  .page .benefits-section .btn-primary {
    width: fit-content;
    margin-top: 0.5rem;
  }

  .benefits-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benefits-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
    max-height: 350px;
  }

  /* ===== Organization Section ===== */

  .page .organization-section {
    background-color: var(--color-bg-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .organization-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .organization-section {
      padding: 6rem 0;
    }
  }

  .page .organization-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .page .organization-content {
      gap: 3rem;
    }
  }

  .organization-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .organization-boxes {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .organization-boxes {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  .org-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .org-box {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .org-box:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
  }

  .org-box h3 {
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .org-box h3 {
      font-size: 1.5rem;
    }
  }

  .org-box h3 i {
    font-size: 1.5rem;
  }

  .org-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .org-box p {
      font-size: 1rem;
    }
  }

  /* ===== Statistics Section ===== */

  .page .statistics-section {
    background-color: var(--color-bg-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .statistics-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .statistics-section {
      padding: 6rem 0;
    }
  }

  .page .statistics-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .page .statistics-content {
      gap: 3rem;
    }
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .stats-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
  }

  .stat-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-primary);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .stat-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .stat-number {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .stat-number {
      font-size: 3.5rem;
    }
  }

  .stat-card p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .stat-card p {
      font-size: 1rem;
    }
  }

  /* ===== CTA Section ===== */

  .page .cta-section {
    background-color: var(--color-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .cta-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .cta-section {
      padding: 6rem 0;
    }
  }

  .page .cta-content {
    display: flex;
    justify-content: center;
  }

  .cta-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .cta-box {
      padding: 3rem;
      gap: 2rem;
    }
  }

  .page .cta-section h2 {
    color: white;
    font-size: 2rem;
  }

  @media (min-width: 768px) {
    .page .cta-section h2 {
      font-size: 2.5rem;
    }
  }

  .page .cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .page .cta-section p {
      font-size: 1.125rem;
    }
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .cta-buttons {
      flex-direction: row;
      justify-content: center;
      gap: 1.5rem;
    }
  }

  .page .cta-section .btn-primary {
    background-color: white;
    color: var(--color-primary);
  }

  .page .cta-section .btn-primary:hover {
    background-color: var(--color-bg-secondary);
  }

  .page .cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
  }

  .page .cta-section .btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
  }

  /* ===== Contact Section ===== */

  .page .contact-section {
    background-color: var(--color-bg-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .page .contact-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .page .contact-section {
      padding: 6rem 0;
    }
  }

  .page .contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page .contact-section h2 {
    color: var(--color-text-primary);
    font-size: 2rem;
  }

  @media (min-width: 768px) {
    .page .contact-section h2 {
      font-size: 2.5rem;
    }
  }

  .page .contact-section p {
    color: var(--color-text-secondary);
    font-size: 1rem;
  }

  @media (min-width: 768px) {
    .page .contact-section p {
      font-size: 1.125rem;
    }
  }

  .contact-wrapper {
    display: flex;
    justify-content: center;
  }

  .contact-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 768px) {
    .contact-form {
      padding: 2.5rem;
      gap: 2rem;
    }
  }

  .contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .contact-form label {
    color: var(--color-text-primary);
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .contact-form label {
      font-size: 1rem;
    }
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
  }

  @media (min-width: 768px) {
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      padding: 1rem;
      font-size: 1rem;
    }
  }

  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  .form-agreement {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-agreement p {
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .form-agreement p {
      font-size: 0.875rem;
    }
  }

  .form-agreement a {
    color: var(--color-primary);
    text-decoration: underline;
  }

  .form-agreement a:hover {
    color: var(--color-primary-dark);
  }

  .contact-form button {
    align-self: center;
    width: 100%;
  }

  /* ===== Cookie Banner ===== */

  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-quaternary);
    border-top: 1px solid var(--color-border-dark);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-xl);
    max-height: 200px;
  }

  @media (min-width: 768px) {
    .cookie-banner {
      padding: 1.5rem;
    }
  }

  .cookie-banner.hidden {
    display: none;
  }

  .cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .cookie-content {
      flex-direction: row;
      justify-content: space-between;
      gap: 1.5rem;
      text-align: left;
    }
  }

  .cookie-banner p {
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  @media (min-width: 768px) {
    .cookie-banner p {
      font-size: 1rem;
      flex: 1;
    }
  }

  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  @media (min-width: 768px) {
    .cookie-actions {
      flex-direction: row;
      gap: 1rem;
      width: auto;
    }
  }

  .cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
  }

  @media (min-width: 768px) {
    .cookie-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.875rem;
    }
  }

  .cookie-accept {
    background-color: var(--color-primary);
    color: white;
  }

  .cookie-accept:hover {
    background-color: var(--color-primary-dark);
  }

  .cookie-decline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
  }

  .cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* ===== Text Center Utility ===== */

  .text-center {
    text-align: center;
  }

  /* ===== Responsive Grid Adjustments ===== */

  @media (max-width: 767px) {
    .posts-grid,
    .steps-grid,
    .features-grid,
    .organization-boxes,
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }

    /* Footer Component Styles */
  .footer {
    background-color: var(--color-bg-tertiary);
    padding: 3rem 0;
    margin-top: 0;
    overflow: hidden;
  }

  .footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  .footer-content {
    display: block;
  }

  /* About Section */
  .footer-about {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border-dark);
  }

  .footer-about-title {
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-family: var(--font-primary);
    line-height: 1.3;
  }

  .footer-about-text {
    font-size: 0.875rem;
    color: #c7d2e0;
    line-height: 1.6;
    font-family: var(--font-secondary);
    margin: 0;
  }

  /* Navigation Section */
  .footer-nav-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border-dark);
  }

  .footer-nav-title {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .footer-link {
    font-size: 0.875rem;
    color: #a0aec0;
    text-decoration: none;
    font-family: var(--font-secondary);
    transition: color var(--transition-base), transform var(--transition-base);
    position: relative;
  }

  .footer-link:hover {
    color: var(--color-primary-light);
    transform: translateX(2px);
  }

  .footer-link:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
  }

  /* Legal Section */
  .footer-legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border-dark);
  }

  .footer-legal-title {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .footer-legal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .footer-legal-link {
    font-size: 0.875rem;
    color: #a0aec0;
    text-decoration: none;
    font-family: var(--font-secondary);
    transition: color var(--transition-base), transform var(--transition-base);
  }

  .footer-legal-link:hover {
    color: var(--color-primary-light);
    transform: translateX(2px);
  }

  .footer-legal-link:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
  }

  /* Copyright Section */
  .footer-copyright {
    text-align: center;
  }

  .footer-copyright-text {
    font-size: 0.75rem;
    color: #64748b;
    font-family: var(--font-secondary);
    margin: 0;
    line-height: 1.6;
  }

  /* Tablet Responsive (768px+) */
  @media (min-width: 768px) {
    .footer {
      padding: 4rem 0;
    }

    .footer .container {
      padding: 0 var(--space-lg);
    }

    .footer-about-title {
      font-size: 1.5rem;
      margin-bottom: var(--space-lg);
    }

    .footer-about-text {
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    .footer-nav-title,
    .footer-legal-title {
      font-size: 1.125rem;
      margin-bottom: var(--space-xl);
    }

    .footer-link,
    .footer-legal-link {
      font-size: 0.9375rem;
    }

    .footer-copyright-text {
      font-size: 0.8125rem;
    }
  }

  /* Desktop Responsive (1024px+) */
  @media (min-width: 1024px) {
    .footer {
      padding: 5rem 0;
    }

    .footer .container {
      padding: 0 var(--space-xl);
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1.5fr 1.5fr;
      gap: var(--space-3xl);
      align-items: start;
    }

    .footer-about {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
      grid-column: 1;
    }

    .footer-nav-section {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
      grid-column: 2;
    }

    .footer-legal-section {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
      grid-column: 3;
    }

    .footer-copyright {
      grid-column: 1 / -1;
      margin-top: var(--space-2xl);
      padding-top: var(--space-2xl);
      border-top: 1px solid var(--color-border-dark);
    }

    .footer-about-title {
      font-size: 1.625rem;
      margin-bottom: var(--space-lg);
    }

    .footer-about-text {
      font-size: 1rem;
    }

    .footer-nav-title,
    .footer-legal-title {
      font-size: 1.25rem;
      margin-bottom: var(--space-xl);
    }

    .footer-nav,
    .footer-legal {
      flex-direction: column;
      gap: var(--space-md);
    }

    .footer-link,
    .footer-legal-link {
      font-size: 1rem;
    }

    .footer-copyright-text {
      font-size: 0.875rem;
    }
  }

  /* Large Desktop (1440px+) */
  @media (min-width: 1440px) {
    .footer {
      padding: 6rem 0;
    }

    .footer .container {
      padding: 0 var(--space-2xl);
    }

    .footer-about-title {
      font-size: 1.875rem;
    }

    .footer-about-text {
      font-size: 1.0625rem;
    }

    .footer-nav-title,
    .footer-legal-title {
      font-size: 1.375rem;
    }

    .footer-copyright-text {
      font-size: 0.9375rem;
    }
  }

  /* Accessibility: Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .footer-link,
    .footer-legal-link {
      transition: none;
    }

    .footer-link:hover,
    .footer-legal-link:hover {
      transform: none;
    }
  }
    

/* Category Page Styles */
/* ===== Category Page: Monthly Budget Styles ===== */

  /* Hero Section */
  .category-page-monthly-budget .category-hero-monthly-budget {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
  }

  .category-page-monthly-budget .hero-content-monthly-budget {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .hero-content-monthly-budget {
      flex-direction: column;
      gap: 1.5rem;
    }
  }

  .category-page-monthly-budget .hero-text-monthly-budget {
    flex: 1;
    max-width: 600px;
  }

  .category-page-monthly-budget .hero-title-monthly-budget {
    font-size: 3.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .hero-title-monthly-budget {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .category-page-monthly-budget .hero-title-monthly-budget {
      font-size: 3rem;
    }
  }

  .category-page-monthly-budget .hero-description-monthly-budget {
    font-size: 1.125rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 0;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .hero-description-monthly-budget {
      font-size: 0.875rem;
    }
  }

  .category-page-monthly-budget .hero-accent-monthly-budget {
    width: 250px;
    height: 250px;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0.15;
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .hero-accent-monthly-budget {
      display: none;
    }
  }

  /* Posts Grid Section */
  .category-page-monthly-budget .posts-grid-section-monthly-budget {
    background-color: #f8fafc;
    position: relative;
  }

  .category-page-monthly-budget .section-title-monthly-budget {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .section-title-monthly-budget {
      font-size: 1.875rem;
      margin-bottom: 2rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .category-page-monthly-budget .section-title-monthly-budget {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }
  }

  .category-page-monthly-budget .posts-grid-monthly-budget {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  @media (max-width: 1023px) {
    .category-page-monthly-budget .posts-grid-monthly-budget {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .posts-grid-monthly-budget {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  /* Cards */
  .category-page-monthly-budget .card-monthly-budget {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    padding: 0;
  }

  .category-page-monthly-budget .card-monthly-budget:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
  }

  .category-page-monthly-budget .card-image-monthly-budget {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .card-image-monthly-budget {
      height: 180px;
    }
  }

  .category-page-monthly-budget .card-content-monthly-budget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .card-content-monthly-budget {
      padding: 1rem;
      gap: 0.75rem;
    }
  }

  @media (min-width: 1024px) {
    .category-page-monthly-budget .card-content-monthly-budget {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .category-page-monthly-budget .card-title-monthly-budget {
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .card-title-monthly-budget {
      font-size: 1.125rem;
    }
  }

  @media (min-width: 1024px) {
    .category-page-monthly-budget .card-title-monthly-budget {
      font-size: 1.375rem;
    }
  }

  .category-page-monthly-budget .card-description-monthly-budget {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .card-description-monthly-budget {
      font-size: 0.8125rem;
    }
  }

  @media (min-width: 1024px) {
    .category-page-monthly-budget .card-description-monthly-budget {
      font-size: 0.9375rem;
    }
  }

  .category-page-monthly-budget .card-link-monthly-budget {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    align-self: flex-start;
    font-size: 0.875rem;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .card-link-monthly-budget {
      font-size: 0.8125rem;
    }
  }

  @media (min-width: 1024px) {
    .category-page-monthly-budget .card-link-monthly-budget {
      font-size: 0.9375rem;
    }
  }

  .category-page-monthly-budget .card-link-monthly-budget:hover {
    color: #1e40af;
    gap: 0.75rem;
  }

  .category-page-monthly-budget .card-link-monthly-budget::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.75em;
    transition: transform var(--transition-base);
  }

  .category-page-monthly-budget .card-link-monthly-budget:hover::after {
    transform: translateX(4px);
  }

  /* Additional Section 1 - Tips */
  .category-page-monthly-budget .additional-section-1-monthly-budget {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
  }

  .category-page-monthly-budget .additional-title-1-monthly-budget {
    font-size: 2.25rem;
    color: #0f172a;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .additional-title-1-monthly-budget {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .category-page-monthly-budget .additional-title-1-monthly-budget {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }
  }

  .category-page-monthly-budget .tips-grid-monthly-budget {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  @media (max-width: 1023px) {
    .category-page-monthly-budget .tips-grid-monthly-budget {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .tips-grid-monthly-budget {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  .category-page-monthly-budget .tip-item-monthly-budget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-base);
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .tip-item-monthly-budget {
      padding: 1.5rem;
      gap: 0.75rem;
    }
  }

  .category-page-monthly-budget .tip-item-monthly-budget:hover {
    background-color: #ecf0f1;
    transform: translateY(-4px);
  }

  .category-page-monthly-budget .tip-icon-monthly-budget {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #e0f2fe;
    border-radius: var(--radius-lg);
    color: var(--color-primary);
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .tip-icon-monthly-budget {
      width: 3rem;
      height: 3rem;
    }
  }

  .category-page-monthly-budget .tip-icon-monthly-budget i {
    font-size: 1.5rem;
  }

  .category-page-monthly-budget .tip-heading-monthly-budget {
    font-size: 1.125rem;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .tip-heading-monthly-budget {
      font-size: 1rem;
    }
  }

  .category-page-monthly-budget .tip-text-monthly-budget {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .tip-text-monthly-budget {
      font-size: 0.8125rem;
    }
  }

  /* Additional Section 2 - Fundamentals */
  .category-page-monthly-budget .additional-section-2-monthly-budget {
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
  }

  .category-page-monthly-budget .additional-title-2-monthly-budget {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .additional-title-2-monthly-budget {
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .category-page-monthly-budget .additional-title-2-monthly-budget {
      font-size: 2rem;
      margin-bottom: 2.5rem;
    }
  }

  .category-page-monthly-budget .fundamentals-content-monthly-budget {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  @media (max-width: 1023px) {
    .category-page-monthly-budget .fundamentals-content-monthly-budget {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .fundamentals-content-monthly-budget {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  .category-page-monthly-budget .fundamentals-item-monthly-budget {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .fundamentals-item-monthly-budget {
      padding: 1.5rem;
    }
  }

  .category-page-monthly-budget .fundamentals-item-monthly-budget:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
  }

  .category-page-monthly-budget .fundamentals-heading-monthly-budget {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .fundamentals-heading-monthly-budget {
      font-size: 1rem;
    }
  }

  .category-page-monthly-budget .fundamentals-text-monthly-budget {
    font-size: 0.875rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 767px) {
    .category-page-monthly-budget .fundamentals-text-monthly-budget {
      font-size: 0.8125rem;
    }
  }

  /* Container Responsive Padding */
  .category-page-monthly-budget .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (min-width: 768px) {
    .category-page-monthly-budget .container {
      padding: 0 2rem;
    }
  }

  @media (min-width: 1440px) {
    .category-page-monthly-budget .container {
      padding: 0 2rem;
    }
  }

  /* Section Padding */
  .category-page-monthly-budget .section-padding {
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .category-page-monthly-budget .section-padding {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .category-page-monthly-budget .section-padding {
      padding: 6rem 0;
    }
  }

/* Post Page 1 Styles */
/* ===== Post: Smart Money Organization Systems ===== */

/* Breadcrumbs Navigation */
.post-smart-money-organization-systems .smart-money-organization-systems-breadcrumbs {
  background-color: var(--color-bg-secondary);
  padding: 1rem 0;
  overflow: hidden;
}

.post-smart-money-organization-systems .smart-money-organization-systems-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-smart-money-organization-systems .smart-money-organization-systems-breadcrumb-link {
  color: var(--color-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-breadcrumb-link {
    font-size: var(--fs-body);
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-smart-money-organization-systems .smart-money-organization-systems-breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
  margin: 0 0.25rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-breadcrumb-separator {
    font-size: var(--fs-body);
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-breadcrumb-current {
  color: var(--color-text-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-breadcrumb-current {
    font-size: var(--fs-body);
  }
}

/* Hero Section */
.post-smart-money-organization-systems .smart-money-organization-systems-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-hero {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-hero-content {
    gap: 1.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-hero-title {
  font-size: 2.25rem;
  color: var(--color-text-light);
  line-height: 1.2;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-hero-title {
    font-size: 3.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-lead {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.95);
  max-width: 800px;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-lead {
    font-size: 1.125rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 1rem;
}

.post-smart-money-organization-systems .smart-money-organization-systems-read-time {
  color: rgba(241, 245, 249, 0.9);
  font-size: var(--fs-body-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-read-time {
    font-size: var(--fs-body);
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-read-time i {
  font-size: 1rem;
}

/* Section One - Understanding Financial Organization */
.post-smart-money-organization-systems .smart-money-organization-systems-section-one {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-one {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-one {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-content-wrapper {
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-section-title {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  line-height: 1.2;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-title {
    font-size: 2.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-body-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-body-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-benefits-list {
    gap: 1.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-list-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-list-item {
    font-size: 1rem;
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-list-item strong {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

/* Section Two - Account Structure */
.post-smart-money-organization-systems .smart-money-organization-systems-section-two {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-two {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-two {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-account-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-account-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-account-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-account-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-account-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-smart-money-organization-systems .smart-money-organization-systems-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-card-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-card-icon i {
  font-size: 1.5rem;
}

.post-smart-money-organization-systems .smart-money-organization-systems-card-title {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-card-title {
    font-size: 1.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-card-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-card-text {
    font-size: 0.9375rem;
  }
}

/* Section Three - Bill Management */
.post-smart-money-organization-systems .smart-money-organization-systems-section-three {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-three {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-three {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-content-wrapper-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-content-wrapper-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-text-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-text-column {
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-subsection-title {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-subsection-title {
    font-size: 1.375rem;
    margin-top: 1.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-smart-money-organization-systems .smart-money-organization-systems-section-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-image {
    max-height: 400px;
  }
}

/* Section Four - Savings Goals */
.post-smart-money-organization-systems .smart-money-organization-systems-section-four {
  background: linear-gradient(180deg, #f8fafc 0%, #ecf0f1 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-four {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-four {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-goals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-goals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-goal-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--color-bg-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-goal-item {
    padding: 2rem;
    gap: 1rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-goal-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-dark);
}

.post-smart-money-organization-systems .smart-money-organization-systems-goal-title {
  font-size: 1.125rem;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-goal-title {
    font-size: 1.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-goal-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-goal-description {
    font-size: 0.9375rem;
  }
}

/* Tip Box */
.post-smart-money-organization-systems .smart-money-organization-systems-tip-box {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(37, 99, 235, 0.05);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tip-box {
    padding: 2rem;
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-tip-box i {
  color: var(--color-accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.post-smart-money-organization-systems .smart-money-organization-systems-tip-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-smart-money-organization-systems .smart-money-organization-systems-tip-title {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tip-title {
    font-size: 1.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-tip-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tip-text {
    font-size: 0.9375rem;
  }
}

/* Section Five - Tools */
.post-smart-money-organization-systems .smart-money-organization-systems-section-five {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-five {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-five {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-tools-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tools-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tools-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-tool-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tool-item {
    padding: 2rem;
    gap: 1rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-tool-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tool-name {
    font-size: 1.125rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-tool-name i {
  font-size: 1.25rem;
}

.post-smart-money-organization-systems .smart-money-organization-systems-tool-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-tool-description {
    font-size: 0.9375rem;
  }
}

/* Section Six - Monthly Review */
.post-smart-money-organization-systems .smart-money-organization-systems-section-six {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-six {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-six {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-content-wrapper-review {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-smart-money-organization-systems .smart-money-organization-systems-review-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-review-steps {
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background-color: var(--color-bg-primary);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-step {
    padding: 2rem;
    gap: 0.75rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-step-number {
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-step-number {
    font-size: 1.125rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-step-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-step-description {
    font-size: 0.9375rem;
  }
}

/* Conclusion Section */
.post-smart-money-organization-systems .smart-money-organization-systems-section-conclusion {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-section-conclusion {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-conclusion-content {
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-key-takeaways {
  padding: 1.5rem;
  background-color: rgba(37, 99, 235, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-key-takeaways {
    padding: 2rem;
    margin-top: 1.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-takeaway-title {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-takeaway-title {
    font-size: 1.375rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-takeaway-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-smart-money-organization-systems .smart-money-organization-systems-takeaway-list li {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-takeaway-list li {
    font-size: 0.9375rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-takeaway-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--fw-bold);
}

/* Related Posts Section */
.post-smart-money-organization-systems .smart-money-organization-systems-related {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related {
    padding: 6rem 0;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related-wrapper {
    gap: 3rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-title {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  text-align: center;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related-title {
    font-size: 2.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related-card {
    gap: 1.25rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-card:hover .smart-money-organization-systems-related-image {
  transform: scale(1.05);
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-card-title {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  padding: 0 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related-card-title {
    font-size: 1.25rem;
    padding: 0 1.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-card-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related-card-description {
    font-size: 0.9375rem;
    padding: 0 1.5rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1rem 1rem 1rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-smart-money-organization-systems .smart-money-organization-systems-related-link {
    margin: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-smart-money-organization-systems .smart-money-organization-systems-related-link i {
  font-size: 0.75rem;
}

/* Post Page 2 Styles */
/* ===== Post: Create Your First Monthly Budget ===== */
/* Complete CSS Isolation for Single Article Page */

.post-create-first-monthly-budget {
  background-color: var(--color-bg-primary);
}

/* ===== BREADCRUMBS ===== */

.create-first-monthly-budget-breadcrumbs {
  background-color: var(--color-bg-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-breadcrumbs {
    padding: 2rem 0;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-breadcrumbs a {
  color: var(--color-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-breadcrumbs a {
    font-size: var(--fs-body);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-create-first-monthly-budget .create-first-monthly-budget-breadcrumbs span {
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
  margin: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-breadcrumbs span {
    font-size: var(--fs-body);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-breadcrumb-sep {
  margin: 0 var(--space-sm);
  color: var(--color-text-muted);
}

/* ===== HERO SECTION ===== */

.create-first-monthly-budget-hero {
  background-color: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  background: #0f172a;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-hero {
    padding: 6rem 0 5rem;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-hero {
    padding: 8rem 0 6rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-hero h1 {
  color: #ffffff;
  margin-bottom: var(--space-lg);
  font-size: 2.25rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-hero h1 {
    font-size: 2.75rem;
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-hero h1 {
    font-size: 3.5rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-lead {
  color: #e0e0e0;
  font-size: var(--fs-body);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 800px;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-lead {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-meta {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  color: #b0bcc4;
  font-size: var(--fs-body-sm);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-meta {
    font-size: var(--fs-body);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-meta i {
  color: var(--color-primary);
  margin-right: 0.5rem;
}

/* ===== INTRODUCTION SECTION ===== */

.create-first-monthly-budget-intro {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-intro {
    padding: 6rem 0;
  }
}

.create-first-monthly-budget-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-intro-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-intro h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-intro h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-intro p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.create-first-monthly-budget-highlight-box {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
  background-color: #eff6ff;
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-highlight-box {
    padding: var(--space-xl);
  }
}

.create-first-monthly-budget-highlight-box i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.post-create-first-monthly-budget .create-first-monthly-budget-highlight-box strong {
  color: var(--color-text-primary);
}

.post-create-first-monthly-budget .create-first-monthly-budget-highlight-box {
  color: var(--color-text-secondary);
}

.create-first-monthly-budget-intro-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ===== STEPS SECTION ===== */

.create-first-monthly-budget-steps {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-steps {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-steps {
    padding: 6rem 0;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-steps h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-steps h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-section-intro {
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-size: var(--fs-body);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-section-intro {
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
  }
}

.create-first-monthly-budget-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.create-first-monthly-budget-step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-step-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.create-first-monthly-budget-step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.create-first-monthly-budget-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
}

.post-create-first-monthly-budget .create-first-monthly-budget-step-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-step-card h3 {
    font-size: 1.5rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-step-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  font-size: var(--fs-body-sm);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-step-card p {
    font-size: var(--fs-body);
  }
}

.create-first-monthly-budget-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-create-first-monthly-budget .create-first-monthly-budget-checklist li {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-checklist li {
    font-size: var(--fs-body);
  }
}

.create-first-monthly-budget-checklist i {
  color: var(--color-secondary);
  font-size: 1rem;
}

/* ===== RULES SECTION ===== */

.create-first-monthly-budget-rules {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-rules {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-rules {
    padding: 6rem 0;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-rules h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-rules h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-rules > .container > .create-first-monthly-budget-rules-content > p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-body);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-rules > .container > .create-first-monthly-budget-rules-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
  }
}

.create-first-monthly-budget-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-rules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-rules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.create-first-monthly-budget-rule-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-rule-item {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.create-first-monthly-budget-rule-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.create-first-monthly-budget-rule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #fef3c7;
  color: var(--color-accent);
  border-radius: var(--radius-lg);
}

.create-first-monthly-budget-rule-icon i {
  font-size: 1.5rem;
}

.post-create-first-monthly-budget .create-first-monthly-budget-rule-item h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-rule-item h3 {
    font-size: 1.25rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-rule-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: var(--fs-body-sm);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-rule-item p {
    font-size: var(--fs-body);
  }
}

/* ===== MISTAKES SECTION ===== */

.create-first-monthly-budget-mistakes {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-mistakes {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-mistakes {
    padding: 6rem 0;
  }
}

.create-first-monthly-budget-mistakes-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-mistakes-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-mistakes h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-mistakes h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-mistakes > .container > .create-first-monthly-budget-mistakes-content > .create-first-monthly-budget-mistakes-text > p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-body);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-mistakes > .container > .create-first-monthly-budget-mistakes-content > .create-first-monthly-budget-mistakes-text > p {
    font-size: 1.125rem;
  }
}

.create-first-monthly-budget-mistake-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-mistake-list {
    gap: 1.25rem;
  }
}

.create-first-monthly-budget-mistake-item {
  padding: 1.25rem;
  background-color: var(--color-bg-primary);
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-mistake-item {
    padding: 1.5rem;
  }
}

.create-first-monthly-budget-mistake-item:hover {
  box-shadow: var(--shadow-md);
}

.post-create-first-monthly-budget .create-first-monthly-budget-mistake-item h4 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-mistake-item h4 {
    font-size: 1.25rem;
  }
}

.create-first-monthly-budget-mistake-item h4 i {
  color: #ef4444;
  font-size: 1.25rem;
}

.post-create-first-monthly-budget .create-first-monthly-budget-mistake-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-mistake-item p {
    font-size: var(--fs-body);
  }
}

.create-first-monthly-budget-mistakes-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ===== TOOLS SECTION ===== */

.create-first-monthly-budget-tools {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-tools {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-tools {
    padding: 6rem 0;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-tools h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-tools h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-tools > .container > .create-first-monthly-budget-tools-content > p {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-body);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-tools > .container > .create-first-monthly-budget-tools-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
  }
}

.create-first-monthly-budget-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.create-first-monthly-budget-tool-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-tool-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.create-first-monthly-budget-tool-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.create-first-monthly-budget-tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #eff6ff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.create-first-monthly-budget-tool-icon i {
  font-size: 1.75rem;
}

.post-create-first-monthly-budget .create-first-monthly-budget-tool-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-tool-card h3 {
    font-size: 1.25rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-tool-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: var(--fs-body-sm);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-tool-card p {
    font-size: var(--fs-body);
  }
}

.create-first-monthly-budget-tool-note {
  font-size: var(--fs-body-xs) !important;
  color: var(--color-text-muted) !important;
  font-style: italic;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-tool-note {
    font-size: var(--fs-body-sm) !important;
  }
}

/* ===== ACTION SECTION ===== */

.create-first-monthly-budget-action {
  background-color: #eff6ff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-action {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-action {
    padding: 6rem 0;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-action h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  font-size: 1.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-action h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-action > .container > .create-first-monthly-budget-action-content > p:first-of-type {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-body);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-action > .container > .create-first-monthly-budget-action-content > p:first-of-type {
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
  }
}

.create-first-monthly-budget-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-timeline {
    gap: 2.5rem;
    margin-bottom: var(--space-3xl);
  }
}

.create-first-monthly-budget-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-timeline-item {
    gap: 2rem;
  }
}

.create-first-monthly-budget-timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 0.875rem;
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-timeline-marker {
    width: 6rem;
    height: 6rem;
    font-size: 1rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-timeline-body h4 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-timeline-body h4 {
    font-size: 1.25rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-timeline-body p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-timeline-body p {
    font-size: var(--fs-body);
  }
}

.create-first-monthly-budget-action-cta {
  background-color: var(--color-bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-action-cta {
    padding: 2.5rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-action-cta p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: var(--fs-body);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-action-cta p {
    font-size: 1.125rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-action-cta strong {
  color: var(--color-text-primary);
}

/* ===== TAKEAWAYS SECTION ===== */

.create-first-monthly-budget-takeaways {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-takeaways {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-takeaways {
    padding: 6rem 0;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-takeaways h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-2xl);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-takeaways h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-3xl);
  }
}

.create-first-monthly-budget-takeaways-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-takeaways-list {
    gap: 1.5rem;
  }
}

.create-first-monthly-budget-takeaway-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-takeaway-item {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.create-first-monthly-budget-takeaway-item:hover {
  box-shadow: var(--shadow-md);
}

.create-first-monthly-budget-takeaway-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #d1fae5;
  color: var(--color-secondary);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-takeaway-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.create-first-monthly-budget-takeaway-icon i {
  font-size: 1rem;
}

.post-create-first-monthly-budget .create-first-monthly-budget-takeaway-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-takeaway-item p {
    font-size: var(--fs-body);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-takeaway-item strong {
  color: var(--color-text-primary);
}

/* ===== RELATED POSTS SECTION ===== */

.create-first-monthly-budget-related {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-related {
    padding: 6rem 0;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-related h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-related h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xl);
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-related > .container > .create-first-monthly-budget-related-content > p {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-body);
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-related > .container > .create-first-monthly-budget-related-content > p {
    font-size: 1.125rem;
    margin-bottom: var(--space-3xl);
  }
}

.create-first-monthly-budget-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .create-first-monthly-budget-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.create-first-monthly-budget-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-decoration: none;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-related-card {
    gap: 1.25rem;
  }
}

.create-first-monthly-budget-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.create-first-monthly-budget-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.create-first-monthly-budget-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.create-first-monthly-budget-related-card:hover .create-first-monthly-budget-related-image img {
  transform: scale(1.05);
}

.create-first-monthly-budget-related-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .create-first-monthly-budget-related-body {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-related-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-related-card h3 {
    font-size: 1.25rem;
  }
}

.post-create-first-monthly-budget .create-first-monthly-budget-related-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-create-first-monthly-budget .create-first-monthly-budget-related-card p {
    font-size: var(--fs-body);
  }
}

.create-first-monthly-budget-related-link {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .create-first-monthly-budget-related-link {
    font-size: var(--fs-body);
  }
}

.create-first-monthly-budget-related-card:hover .create-first-monthly-budget-related-link {
  color: var(--color-primary-dark);
}

/* ===== Responsive Adjustments ===== */

@media (max-width: 767px) {
  .create-first-monthly-budget-mistakes-content {
    flex-direction: column;
  }

  .create-first-monthly-budget-mistakes-image {
    order: -1;
  }

  .create-first-monthly-budget-intro-content {
    flex-direction: column;
  }

  .create-first-monthly-budget-intro-image {
    order: -1;
  }
}

/* Post Page 3 Styles */
/* ===== POST EMERGENCY FUNDS MONTHLY RESERVES ===== */

.post-emergency-funds-monthly-reserves {
  background-color: var(--color-bg-primary);
}

/* ===== BREADCRUMBS ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs {
  background-color: var(--color-bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs {
    padding: 1.5rem 0;
  }

  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs .container {
    gap: 1rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs a {
  color: var(--color-primary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs a {
    font-size: var(--fs-body);
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumb-separator {
    font-size: var(--fs-body);
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs span:last-child {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-breadcrumbs span:last-child {
    font-size: var(--fs-body);
  }
}

/* ===== HERO SECTION ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero {
  background-color: #0f172a;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero-content {
    gap: 2rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #ffffff;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-hero-title {
    font-size: 3.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 800px;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-lead {
    font-size: 1.125rem;
    max-width: 900px;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-read-time {
    font-size: var(--fs-body);
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-read-time i {
  font-size: var(--icon-sm);
}

/* ===== SECTION 1 ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-1 {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-1 {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-text-block {
    gap: 2rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-title {
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-title {
    font-size: 3rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-body-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-body-text {
    font-size: 1rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-highlight-box {
  background-color: #f0f9ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-highlight-box {
    padding: 2rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-highlight-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-highlight-text {
    font-size: 1rem;
  }
}

/* ===== SECTION 2 ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-2 {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-2 {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-2 {
  display: flex;
  flex-direction: column;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-two-column {
    gap: 3rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-text-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-text-column {
    gap: 2rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-list {
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-list {
    gap: 1rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-list-item {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-list-item {
    font-size: 1rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== SECTION 3 ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-3 {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-3 {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-3 {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-3 {
    gap: 3rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #e0f2fe;
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: var(--icon-lg);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-icon {
    width: 4rem;
    height: 4rem;
    font-size: var(--icon-xl);
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-title {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-title {
    font-size: 1.25rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-strategy-text {
    font-size: 1rem;
  }
}

/* ===== SECTION 4 ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-4 {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-4 {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-4 {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-4 {
    gap: 3rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-options-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-options-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-options-container {
    gap: 2.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-option-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-option-item {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-option-title {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-option-title {
    font-size: 1.25rem;
  }
}

/* ===== SECTION 5 ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-5 {
  background-color: #0f172a;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-5 {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-5 {
  display: flex;
  flex-direction: column;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-two-column-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-two-column-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-two-column-reverse {
    gap: 3rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-image-column-reverse {
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-image-column-reverse {
    order: 1;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-text-column-reverse {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 1;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-text-column-reverse {
    gap: 2rem;
    order: -1;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-5 .emergency-funds-monthly-reserves-section-title {
  color: #ffffff;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-5 .emergency-funds-monthly-reserves-body-text {
  color: #e0e0e0;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-best-practices {
  background-color: rgba(37, 99, 235, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-best-practices {
    padding: 2rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-practices-title {
  font-size: 1rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-practices-title {
    font-size: 1.125rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-practices-list {
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-practices-list {
    gap: 1rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-practices-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-practices-list li {
    font-size: 1rem;
  }
}

/* ===== SECTION 6 ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-6 {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-6 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-6 {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-6 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-6 {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-content-6 {
    gap: 3rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-roadmap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-roadmap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-roadmap {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-roadmap-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f0f9ff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  position: relative;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-roadmap-step {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-step-number {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-step-number {
    width: 3rem;
    height: 3rem;
    left: 2rem;
    font-size: var(--fs-h4);
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-step-title {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-step-title {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-step-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-step-text {
    font-size: 1rem;
  }
}

/* ===== CONCLUSION SECTION ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion-content {
    gap: 2rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion-title {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion-title {
    font-size: 2.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-conclusion-text {
    font-size: 1rem;
  }
}

/* ===== RELATED POSTS SECTION ===== */

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related {
    padding: 6rem 0;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-content {
    gap: 3rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-title {
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-title {
    font-size: 2.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-subtitle {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-subtitle {
    font-size: 1rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card {
    gap: 1.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card:hover .emergency-funds-monthly-reserves-related-image {
  transform: scale(1.05);
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card-title {
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
  padding: 0 1rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card-title {
    font-size: 1.25rem;
    padding: 0 1.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  padding: 0 1rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-card-description {
    font-size: 1rem;
    padding: 0 1.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  padding: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-link {
    font-size: 1rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-link i {
  font-size: var(--icon-sm);
  transition: transform var(--transition-base);
}

.post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-related-link:hover i {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 767px) {
  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-section-title {
    margin-bottom: 0;
  }

  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-body-text {
    margin-bottom: 1rem;
  }

  .post-emergency-funds-monthly-reserves .emergency-funds-monthly-reserves-body-text:last-child {
    margin-bottom: 0;
  }
}

/* Post Page 4 Styles */
/* ===== Post-Specific Styling: Budget Tracking Methods That Work ===== */

.post-budget-tracking-methods-that-work {
  background-color: var(--color-bg-primary);
}

/* ===== Breadcrumbs ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumbs {
  background-color: var(--color-bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--fs-body-sm);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumbs .container {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumbs a {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumbs span:last-child {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-breadcrumb-separator {
    margin: 0 0.5rem;
  }
}

/* ===== Hero Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hero {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  overflow: hidden;
  position: relative;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hero-content {
  position: relative;
  z-index: 1;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-title {
  font-size: 2.25rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-title {
    font-size: 3.5rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-lead {
  font-size: var(--fs-body);
  color: rgba(241, 245, 249, 0.95);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-lead {
    font-size: var(--fs-body-lg);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: var(--fs-body-sm);
  color: rgba(241, 245, 249, 0.85);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-meta i {
  margin-right: 0.4rem;
  color: var(--color-accent);
}

/* ===== Intro Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro h2 {
    font-size: 2.25rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro p {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits {
  background-color: var(--color-bg-secondary);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits {
    padding: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits-list {
  list-style: none;
  padding: 0;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits-list li {
  color: var(--color-text-primary);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-body-sm);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits-list li {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
  font-size: 1.2rem;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro-image {
  display: none;
}

@media (min-width: 1024px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro-image {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

/* ===== Digital Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital {
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital > .container > .budget-tracking-methods-that-work-digital-content > p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital > .container > .budget-tracking-methods-that-work-digital-content > p {
    font-size: var(--fs-body);
    margin-bottom: var(--space-2xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-card {
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-icon i {
  font-size: 1.5rem;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-card h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-card h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-method-card p {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital-tips {
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-accent);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital-tips {
    padding: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital-tips h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital-tips h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital-tips p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital-tips p {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital-tips p:last-child {
  margin-bottom: 0;
}

/* ===== Analog Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog > .container > .budget-tracking-methods-that-work-analog-content > p:first-of-type {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog > .container > .budget-tracking-methods-that-work-analog-content > p:first-of-type {
    font-size: var(--fs-body);
    margin-bottom: var(--space-xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-image {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-image {
    margin: var(--space-2xl) 0;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-methods h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-methods h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-method {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-method:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-method h4 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-method h4 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-method h4 i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-method p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog-method p {
    font-size: var(--fs-body);
  }
}

/* ===== Hybrid Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid {
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid > .container > .budget-tracking-methods-that-work-hybrid-content > p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid > .container > .budget-tracking-methods-that-work-hybrid-content > p {
    font-size: var(--fs-body);
    margin-bottom: var(--space-2xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-examples {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-3xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-card {
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-card {
    padding: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-card h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-card h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid-card p {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing {
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing {
    padding: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing > p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing > p {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing-list {
  list-style: none;
  padding: 0;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing-list li {
  color: var(--color-text-primary);
  font-size: var(--fs-body-sm);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing-list li {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-choosing-list li strong {
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

/* ===== Implementation Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-implementation {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-implementation h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-implementation h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-implementation > .container > .budget-tracking-methods-that-work-implementation-content > p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-implementation > .container > .budget-tracking-methods-that-work-implementation-content > p {
    font-size: var(--fs-body);
    margin-bottom: var(--space-2xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step {
  background-color: var(--color-bg-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step {
    padding: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step:hover {
  transform: translateX(4px);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: 50%;
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-step p {
    font-size: var(--fs-body);
  }
}

/* ===== Conclusion Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion {
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion-content {
  max-width: 800px;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion p {
    font-size: var(--fs-body);
    margin-bottom: var(--space-xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion p:last-child {
  margin-bottom: 0;
}

/* ===== Related Posts Section ===== */

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related {
  background-color: var(--color-bg-primary);
  border-top: 2px solid var(--color-border-light);
  overflow: hidden;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-card {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-image {
  overflow: hidden;
  background-color: var(--color-border-light);
  height: 200px;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-card:hover .budget-tracking-methods-that-work-related-image img {
  transform: scale(1.05);
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-body {
    padding: 2rem;
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-card h3 {
  font-size: var(--fs-h6);
  color: var(--color-text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-card h3 {
    font-size: var(--fs-h5);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-card p {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-link {
    font-size: var(--fs-body);
  }
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-related-link i {
  font-size: 0.875rem;
}

/* ===== Responsive Adjustments ===== */

@media (max-width: 767px) {
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-title {
    font-size: 2rem;
  }

  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-intro h2,
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-digital h2,
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-analog h2,
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-hybrid h2,
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-implementation h2,
  .post-budget-tracking-methods-that-work .budget-tracking-methods-that-work-conclusion h2 {
    font-size: 1.5rem;
  }
}

/* Post Page 5 Styles */
/* ===== Post: Family Budget Planning Essentials ===== */

/* Breadcrumbs */
.post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumbs {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumbs a {
  font-size: var(--fs-body-sm);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumbs a {
    font-size: var(--fs-body);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--fs-body-sm);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumbs span:last-child {
  font-size: var(--fs-body-sm);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-breadcrumbs span:last-child {
    font-size: var(--fs-body);
  }
}

/* Hero Section */
.post-family-budget-planning-essentials .family-budget-planning-essentials-hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: 3rem 0;
  border-bottom: 2px solid var(--color-border-light);
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-hero {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-hero h1 {
  font-size: 2.25rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-hero h1 {
    font-size: 3.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-lead {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-lead {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-meta {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-read-time,
.post-family-budget-planning-essentials .family-budget-planning-essentials-date {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-read-time,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-date {
    font-size: var(--fs-body);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-read-time i,
.post-family-budget-planning-essentials .family-budget-planning-essentials-date i {
  font-size: var(--icon-md);
  color: var(--color-primary);
}

/* Section 1 */
.post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-content-1 {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 h2 {
    font-size: 2.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-image-1 {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-2xl);
  display: block;
}

/* Section 2 */
.post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-content-2 {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 h2 {
    font-size: 2.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-framework-list {
  list-style-position: inside;
  margin-bottom: var(--space-xl);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-framework-list li {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-sm);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-framework-list li {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-framework-list strong {
  color: var(--color-text-primary);
}

/* Section 3 */
.post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-content-3 {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 h2 {
    font-size: 2.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-category-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.75rem;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-category-card {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-category-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-category-icon {
    width: 4rem;
    height: 4rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-category-icon i {
  font-size: var(--icon-lg);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-category-card h4 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-category-card h4 {
    font-size: 1.25rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-category-card p {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-category-card p {
    font-size: 0.875rem;
  }
}

/* Section 4 */
.post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-content-4 {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 h2 {
    font-size: 2.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-tips-box {
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-tips-box {
    padding: 2rem;
    margin-bottom: var(--space-3xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-tips-box h3 {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-tips-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-tips-list {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 0;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-tips-list li {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-sm);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-tips-list li {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-tips-list strong {
  color: var(--color-text-primary);
}

/* Section 5 */
.post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-content-5 {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 h2 {
    font-size: 2.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-image-2 {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: var(--space-2xl) 0;
  display: block;
}

/* Section 6 */
.post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-content-6 {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 h2 {
    font-size: 2.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-emergency-stages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-emergency-stages {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--space-3xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-stage {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
  background-color: var(--color-bg-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-stage {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h6);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-stage h4 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-stage h4 {
    font-size: 1.25rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-stage p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-stage p {
    font-size: 1rem;
  }
}

/* Conclusion */
.post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  border-top: 2px solid var(--color-border-light);
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion h2 {
    font-size: 2.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-key-takeaways {
  background-color: var(--color-bg-secondary);
  padding: 1.5rem;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-key-takeaways {
    padding: 2rem;
    margin-bottom: var(--space-3xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-key-takeaways h3 {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-key-takeaways h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-takeaways-list {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 0;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-takeaways-list li {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-sm);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-takeaways-list li {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-takeaways-list strong {
  color: var(--color-text-primary);
}

/* Related Posts Section */
.post-family-budget-planning-essentials .family-budget-planning-essentials-related {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related {
    padding: 6rem 0;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related h2 {
  font-size: 1.875rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-3xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-card-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related-card-content {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-card h3 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related-card h3 {
    font-size: 1.25rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related-card p {
    font-size: 1rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related-link {
    font-size: 1rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-lg);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-related-link i {
  font-size: var(--icon-sm);
}

/* Cookie Banner */
.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-banner {
  background-color: var(--color-bg-tertiary);
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border-dark);
  overflow: hidden;
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-banner p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-banner p {
    font-size: 1rem;
    flex: 1;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-actions {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  width: 100%;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-actions {
    width: auto;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-accept,
.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-accept,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-decline {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-accept {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-accept:hover {
  background-color: var(--color-primary-dark);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-decline {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
}

.post-family-budget-planning-essentials .family-budget-planning-essentials-cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments for very small screens */
@media (max-width: 320px) {
  .post-family-budget-planning-essentials .family-budget-planning-essentials-hero h1 {
    font-size: 1.75rem;
  }

  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-1 h2,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-2 h2,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-3 h2,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-4 h2,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-5 h2,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-section-6 h2,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-conclusion h2,
  .post-family-budget-planning-essentials .family-budget-planning-essentials-related h2 {
    font-size: 1.5rem;
  }
}

/* Privacy Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

  /* Privacy Page Main Container */
  .privacy-page {
    background-color: var(--color-bg-primary);
    padding: 3rem 1rem;
    overflow: hidden;
  }

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

  @media (min-width: 1024px) {
    .privacy-page {
      padding: 6rem 2rem;
    }
  }

  /* Container - Width Control */
  .privacy-page .container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }

  /* Privacy Content Wrapper */
  .privacy-page .privacy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  @media (min-width: 768px) {
    .privacy-page .privacy-content {
      gap: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .privacy-page .privacy-content {
      gap: 3rem;
    }
  }

  /* Main Heading */
  .privacy-page h1 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    line-height: 1.2;
    margin: 0 0 1rem 0;
  }

  @media (min-width: 768px) {
    .privacy-page h1 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .privacy-page h1 {
      font-size: 3.5rem;
    }
  }

  /* Updated Date */
  .privacy-page .privacy-updated {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: var(--fw-medium);
    margin: 0 0 2rem 0;
  }

  @media (min-width: 768px) {
    .privacy-page .privacy-updated {
      font-size: 1rem;
    }
  }

  /* Section Styling */
  .privacy-page .privacy-section {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .privacy-page .privacy-section {
      padding-left: 2rem;
      border-left-width: 5px;
    }
  }

  /* Section Headings */
  .privacy-page .privacy-section h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    line-height: 1.3;
    margin: 0 0 1rem 0;
  }

  @media (min-width: 768px) {
    .privacy-page .privacy-section h2 {
      font-size: 1.875rem;
    }
  }

  @media (min-width: 1024px) {
    .privacy-page .privacy-section h2 {
      font-size: 2.25rem;
    }
  }

  /* Paragraph Text */
  .privacy-page .privacy-section p {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
  }

  @media (min-width: 768px) {
    .privacy-page .privacy-section p {
      font-size: 1rem;
      line-height: 1.8;
    }
  }

  /* Accessibility */
  .privacy-page {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Print Styles */
  @media print {
    .privacy-page {
      background-color: white;
      padding: 0;
    }

    .privacy-page .privacy-section {
      page-break-inside: avoid;
      margin-bottom: 2rem;
    }
  }

/* Thank You Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

  /* ============================================
     THANK YOU PAGE STYLES
     ============================================ */

  /* Hero Section */
  .thank-hero-section {
    background-color: var(--color-bg-tertiary);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 6rem 0;
    }
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: var(--space-xl);
    }
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-2xl);
    height: var(--icon-2xl);
    background: linear-gradient(135deg, var(--color-success), var(--color-secondary));
    border-radius: var(--radius-full);
    animation: scaleIn 0.6s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon {
      width: 6rem;
      height: 6rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-icon {
      width: 7rem;
      height: 7rem;
    }
  }

  .thank-icon i {
    font-size: var(--icon-xl);
    color: var(--color-text-light);
  }

  @media (min-width: 768px) {
    .thank-icon i {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-icon i {
      font-size: 3.5rem;
    }
  }

  .thank-hero-section h1 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-light);
    margin: 0;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 4rem;
    }
  }

  .thank-lead {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: #cbd5e1;
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1rem;
      max-width: 600px;
    }
  }

  @media (min-width: 1024px) {
    .thank-lead {
      font-size: 1.125rem;
      max-width: 700px;
    }
  }

  /* Next Section */
  .thank-next-section {
    background-color: var(--color-bg-primary);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .thank-next-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-next-section {
      padding: 6rem 0;
    }
  }

  .thank-next-content {
    display: flex;
    flex-direction: column;
  }

  .thank-next-wrapper {
    display: flex;
    flex-direction: column;
  }

  .thank-next-section h2 {
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-md) 0;
    letter-spacing: -0.01em;
  }

  @media (min-width: 768px) {
    .thank-next-section h2 {
      font-size: 2.5rem;
      margin-bottom: var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .thank-next-section h2 {
      font-size: 3rem;
      margin-bottom: var(--space-xl);
    }
  }

  .thank-description {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: var(--color-text-secondary);
    margin: 0 0 var(--space-xl) 0;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .thank-description {
      font-size: 1rem;
      margin-bottom: var(--space-2xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-description {
      font-size: 1.125rem;
      margin-bottom: var(--space-3xl);
    }
  }

  /* Steps Grid */
  .thank-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .thank-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-steps {
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg);
    }
  }

  .thank-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .thank-step {
      padding: var(--space-xl);
      gap: var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .thank-step {
      padding: var(--space-lg);
    }
  }

  .thank-step:hover {
    background-color: #f1f5f9;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
  }

  @media (min-width: 768px) {
    .step-icon {
      width: 3rem;
      height: 3rem;
    }
  }

  .step-icon i {
    font-size: var(--icon-md);
  }

  @media (min-width: 768px) {
    .step-icon i {
      font-size: var(--icon-lg);
    }
  }

  .thank-step h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-step h3 {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-step h3 {
      font-size: 1.125rem;
    }
  }

  .thank-step p {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .thank-step p {
      font-size: 0.9375rem;
    }
  }

  /* Benefits Section */
  .thank-benefits-section {
    background-color: var(--color-bg-secondary);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .thank-benefits-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-benefits-section {
      padding: 6rem 0;
    }
  }

  .thank-benefits-content {
    display: flex;
    flex-direction: column;
  }

  .thank-benefits-section h2 {
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-lg) 0;
    text-align: center;
    letter-spacing: -0.01em;
  }

  @media (min-width: 768px) {
    .thank-benefits-section h2 {
      font-size: 2.5rem;
      margin-bottom: var(--space-2xl);
    }
  }

  @media (min-width: 1024px) {
    .thank-benefits-section h2 {
      font-size: 3rem;
      margin-bottom: var(--space-3xl);
    }
  }

  /* Benefits Grid */
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg);
    }
  }

  .benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .benefit-card {
      padding: var(--space-xl);
      gap: var(--space-lg);
    }
  }

  @media (min-width: 1024px) {
    .benefit-card {
      padding: var(--space-lg);
      gap: var(--space-md);
    }
  }

  .benefit-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
  }

  @media (min-width: 768px) {
    .benefit-icon {
      width: 3.5rem;
      height: 3.5rem;
    }
  }

  .benefit-icon i {
    font-size: var(--icon-lg);
  }

  @media (min-width: 768px) {
    .benefit-icon i {
      font-size: var(--icon-xl);
    }
  }

  .benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    margin: 0;
  }

  @media (min-width: 768px) {
    .benefit-card h3 {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .benefit-card h3 {
      font-size: 1.125rem;
    }
  }

  .benefit-card p {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .benefit-card p {
      font-size: 0.9375rem;
    }
  }

  /* CTA Section */
  .thank-cta-section {
    background-color: var(--color-bg-tertiary);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .thank-cta-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-section {
      padding: 6rem 0;
    }
  }

  .thank-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-lg);
  }

  @media (min-width: 768px) {
    .thank-cta-content {
      gap: var(--space-xl);
    }
  }

  .thank-cta-section h2 {
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
    color: var(--color-text-light);
    margin: 0;
    letter-spacing: -0.01em;
  }

  @media (min-width: 768px) {
    .thank-cta-section h2 {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-section h2 {
      font-size: 3rem;
    }
  }

  .thank-cta-section p {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    color: #cbd5e1;
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .thank-cta-section p {
      font-size: 1rem;
      max-width: 600px;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-section p {
      font-size: 1.125rem;
      max-width: 700px;
    }
  }

  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    gap: var(--space-sm);
  }

  @media (min-width: 768px) {
    .btn {
      font-size: 1rem;
      padding: 1rem 2rem;
    }
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  /* Container */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  @media (min-width: 768px) {
    .container {
      padding: 0 var(--space-xl);
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 0 var(--space-2xl);
    }
  }

  /* Animation */
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

/* 404 Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ========================================
   404 ERROR PAGE STYLES
   ======================================== */

.error-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

/* Hero Section */
.error-hero {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .error-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .error-hero {
    padding: 7rem 0;
  }
}

.error-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .error-hero-content {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .error-hero-content {
    gap: 4rem;
  }
}

/* Illustration */
.error-illustration {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .error-illustration {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .error-illustration {
    width: 300px;
    height: 300px;
  }
}

/* Wallet Cards */
.illustration-wallet {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-card {
  position: absolute;
  width: 120px;
  height: 75px;
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: cardFloat 3s ease-in-out infinite;
  transform-origin: center;
}

@media (min-width: 768px) {
  .wallet-card {
    width: 150px;
    height: 95px;
  }
}

.wallet-card-2 {
  background-color: var(--color-secondary);
  animation-delay: 0.5s;
  transform: rotate(-15deg);
}

.wallet-shine {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: shimmer 2s ease-in-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Coins */
.illustration-coins {
  position: absolute;
  width: 100%;
  height: 100%;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), inset -1px -1px 3px rgba(0, 0, 0, 0.1);
  animation: coinSpin 4s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .coin {
    width: 50px;
    height: 50px;
    font-size: 0.875rem;
  }
}

.coin-1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.coin-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 1.3s;
}

.coin-3 {
  top: 60%;
  right: 5%;
  animation-delay: 2.6s;
}

/* Question Mark */
.illustration-question {
  position: absolute;
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  animation: questionBounce 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .illustration-question {
    font-size: 5rem;
  }
}

/* Error Content */
.error-content {
  flex: 1;
  max-width: 600px;
}

.error-code {
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  animation: codeGlow 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .error-code {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .error-code {
    font-size: 7rem;
  }
}

.error-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0.5rem 0 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .error-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .error-title {
    font-size: 3rem;
  }
}

.error-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 1rem 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .error-description {
    font-size: 1.125rem;
  }
}

.error-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .error-subtitle {
    font-size: 1rem;
  }
}

/* Action Buttons */
.error-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .error-actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border-color: var(--color-border-light);
}

.btn-secondary:hover {
  background-color: var(--color-border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn i {
  font-size: 1.125rem;
}

/* Suggestions Section */
.error-suggestions {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-suggestions {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .error-suggestions {
    padding: 5rem 0;
  }
}

.error-suggestions-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .error-suggestions-content {
    gap: 3rem;
  }
}

.suggestions-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .suggestions-title {
    font-size: 2.25rem;
  }
}

.suggestions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .suggestions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.suggestion-card {
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .suggestion-card {
    padding: 2rem;
  }
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.suggestion-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .suggestion-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.suggestion-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

@media (min-width: 768px) {
  .suggestion-card h4 {
    font-size: 1.5rem;
  }
}

.suggestion-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .suggestion-card p {
    font-size: 1rem;
  }
}

/* Stats Section */
.error-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .error-stats {
    gap: 2rem;
    padding: 2.5rem;
    margin-top: 3rem;
  }
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* CTA Section */
.error-cta {
  background-color: var(--color-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-cta {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .error-cta {
    padding: 5rem 0;
  }
}

.error-cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.error-cta-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 768px) {
  .error-cta-content h3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .error-cta-content h3 {
    font-size: 3rem;
  }
}

.error-cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .error-cta-content p {
    font-size: 1.125rem;
  }
}

/* Animations */
@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes coinSpin {
  0% {
    transform: rotateY(0deg) rotateZ(0deg);
    opacity: 1;
  }
  50% {
    transform: rotateY(180deg) rotateZ(180deg);
  }
  100% {
    transform: rotateY(360deg) rotateZ(360deg);
    opacity: 1;
  }
}

@keyframes questionBounce {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes codeGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(37, 99, 235, 0.8);
  }
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .wallet-card,
  .wallet-shine,
  .coin,
  .illustration-question,
  .error-code,
  .suggestion-card,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}