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

:root {
  /* Colors */
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-bg-dark: #0f172a;
  --color-bg-light: #f8fafc;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-light: #ffffff;
  --color-border: #e2e8f0;
  --color-error: #ef4444;
  --color-success: #10b981;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes */
  --font-size-h1-mobile: 2.25rem;
  --font-size-h1-tablet: 2.75rem;
  --font-size-h1-desktop: 3.75rem;
  --font-size-h2-mobile: 1.875rem;
  --font-size-h2-tablet: 2.25rem;
  --font-size-h2-desktop: 3rem;
  --font-size-h3-mobile: 1.5rem;
  --font-size-h3-tablet: 1.75rem;
  --font-size-h3-desktop: 2.25rem;
  --font-size-h4-mobile: 1.25rem;
  --font-size-h4-tablet: 1.375rem;
  --font-size-h4-desktop: 1.875rem;
  --font-size-body-mobile: 0.875rem;
  --font-size-body-tablet: 0.9375rem;
  --font-size-body-desktop: 1rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* 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);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  /* Icon Sizes */
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
  --icon-2xl: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body-mobile);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  body {
    font-size: var(--font-size-body-tablet);
  }
}

@media (min-width: 1024px) {
  body {
    font-size: var(--font-size-body-desktop);
  }
}

/* Typography Styles */
h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-h1-mobile);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-h1-tablet);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-h1-desktop);
  }
}

h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2-mobile);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  h2 {
    font-size: var(--font-size-h2-tablet);
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: var(--font-size-h2-desktop);
  }
}

h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3-mobile);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  h3 {
    font-size: var(--font-size-h3-tablet);
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: var(--font-size-h3-desktop);
  }
}

h4 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h4-mobile);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

@media (min-width: 768px) {
  h4 {
    font-size: var(--font-size-h4-tablet);
  }
}

@media (min-width: 1024px) {
  h4 {
    font-size: var(--font-size-h4-desktop);
  }
}

h5 {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

h6 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
}

p {
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

p:last-child {
  margin-bottom: 0;
}

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

ul, ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

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

/* Container */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-body-mobile);
  font-weight: var(--font-weight-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

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

@media (min-width: 1024px) {
  .btn {
    font-size: var(--font-size-body-desktop);
  }
}

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

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

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

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

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

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

.btn-outline-light {
  background-color: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
}

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

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

/* Sections Base */
section {
  overflow: hidden;
}

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding: 1rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

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

.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-light);
  border-radius: var(--radius-lg);
  font-size: var(--icon-lg);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: var(--icon-xl);
  }
}

.card h3 {
  margin: 0;
  color: var(--color-text-primary);
}

.card p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

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

/* Grid Layouts */
.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: 1fr;
}

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

.grid-3 {
  grid-template-columns: 1fr;
}

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

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

.grid-4 {
  grid-template-columns: 1fr;
}

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

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

/* Flexbox Utilities */
.flex {
  display: flex;
}

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

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

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

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

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

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

label {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  font-size: 0.9375rem;
}

input,
textarea,
select {
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-card);
}

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-secondary);
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.pt-sm {
  padding-top: var(--spacing-sm);
}

.pt-md {
  padding-top: var(--spacing-md);
}

.pt-lg {
  padding-top: var(--spacing-lg);
}

.pb-sm {
  padding-bottom: var(--spacing-sm);
}

.pb-md {
  padding-bottom: var(--spacing-md);
}

.pb-lg {
  padding-bottom: var(--spacing-lg);
}

/* Font Awesome Integration */
.fa {
  font-size: var(--icon-md);
}

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

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

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

/* Badge */
.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  background-color: var(--color-bg-light);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.badge-accent {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-accent);
}

/* Divider */
.divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--spacing-lg) 0;
}

/* Responsive Text */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-tablet {
  display: block;
}

@media (min-width: 768px) {
  .hidden-tablet {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hidden-tablet {
    display: block;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-text-secondary);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

  /* ===== Header Remote Nexus ===== */
  .header-remote-nexus {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
    box-shadow: var(--shadow-md);
  }

  .header-remote-nexus-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  /* Logo/Brand */
  .header-remote-nexus-logo {
    flex-shrink: 0;
  }

  .header-remote-nexus-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
    text-decoration: none;
    transition: opacity var(--transition-base);
  }

  .header-remote-nexus-brand:hover {
    opacity: 0.8;
  }

  .header-remote-nexus-brand i {
    font-size: var(--icon-lg);
    color: var(--color-primary);
  }

  /* Desktop Navigation */
  .header-remote-nexus-desktop-nav {
    display: none;
    flex-direction: row;
    gap: 2rem;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
  }

  .header-remote-nexus-nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-base);
    position: relative;
    padding-bottom: 0.25rem;
  }

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

  .header-remote-nexus-nav-link:hover {
    color: var(--color-primary);
  }

  .header-remote-nexus-nav-link:hover::after {
    width: 100%;
  }

  /* CTA Button Desktop */
  .header-remote-nexus-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all var(--transition-base);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header-remote-nexus-cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  /* Mobile Toggle Button */
  .header-remote-nexus-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: var(--icon-lg);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-base);
    flex-shrink: 0;
  }

  .header-remote-nexus-mobile-toggle:hover {
    color: var(--color-primary);
  }

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

  /* Mobile Menu */
  .header-remote-nexus-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 200;
    overflow-y: auto;
  }

  .header-remote-nexus-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-remote-nexus-mobile-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
  }

  .header-remote-nexus-mobile-close {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: var(--icon-lg);
    cursor: pointer;
    padding: 0.5rem;
    transition: color var(--transition-base);
  }

  .header-remote-nexus-mobile-close:hover {
    color: var(--color-primary);
  }

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

  .header-remote-nexus-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
  }

  .header-remote-nexus-mobile-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-base);
    padding: 0.75rem 0;
  }

  .header-remote-nexus-mobile-link:hover {
    color: var(--color-primary);
  }

  .header-remote-nexus-mobile-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: var(--radius-md);
  }

  .header-remote-nexus-mobile-cta {
    padding: 1rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition-base);
    display: block;
  }

  .header-remote-nexus-mobile-cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  /* ===== Responsive Breakpoints ===== */
  
  /* Tablet (768px+) */
  @media (min-width: 768px) {
    .header-remote-nexus-container {
      padding: 1.25rem 2rem;
    }

    .header-remote-nexus-desktop-nav {
      display: flex;
    }

    .header-remote-nexus-cta-button {
      display: block;
    }

    .header-remote-nexus-mobile-toggle {
      display: none;
    }

    .header-remote-nexus-mobile-menu {
      display: none;
    }

    .header-remote-nexus-brand span {
      display: inline;
    }

    .header-remote-nexus-nav-link {
      font-size: 1rem;
    }

    .header-remote-nexus-cta-button {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  /* Desktop (1024px+) */
  @media (min-width: 1024px) {
    .header-remote-nexus-container {
      padding: 1.5rem 3rem;
      gap: 2rem;
    }

    .header-remote-nexus-brand {
      font-size: 1.375rem;
    }

    .header-remote-nexus-brand i {
      font-size: var(--icon-xl);
    }

    .header-remote-nexus-desktop-nav {
      gap: 3rem;
    }

    .header-remote-nexus-nav-link {
      font-size: 1rem;
    }
  }

  /* Large Desktop (1440px+) */
  @media (min-width: 1440px) {
    .header-remote-nexus-container {
      padding: 1.75rem 4rem;
    }
  }

    /* Remote Hub Styles */
.remote-hub {
  width: 100%;
}

/* Hero Section */
.remote-hub .hero-section {
  background-color: #0f172a;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

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

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

.remote-hub .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .remote-hub .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .hero-content {
    gap: 4rem;
  }
}

.remote-hub .hero-text h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .remote-hub .hero-text h1 {
    margin-bottom: 1.5rem;
  }
}

.remote-hub .hero-subtitle {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .remote-hub .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.remote-hub .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.remote-hub .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

@media (min-width: 768px) {
  .remote-hub .hero-image {
    min-height: 350px;
  }
}

@media (min-width: 1024px) {
  .remote-hub .hero-image {
    min-height: 400px;
  }
}

.remote-hub .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Featured Posts Section */
.remote-hub .featured-posts-section {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.remote-hub .featured-posts-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .remote-hub .featured-posts-header {
    margin-bottom: 4rem;
  }
}

.remote-hub .featured-posts-header h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.remote-hub .featured-posts-header p {
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .remote-hub .featured-posts-header p {
    font-size: 1rem;
  }
}

.remote-hub .featured-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

.remote-hub .post-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.remote-hub .post-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.remote-hub .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.remote-hub .post-card-content h3 {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

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

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

.remote-hub .post-card-content p {
  color: #333333;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

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

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

.remote-hub .post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .remote-hub .post-card-link {
    font-size: 0.9375rem;
  }
}

.remote-hub .post-card-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.remote-hub .post-card-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.remote-hub .featured-posts-footer {
  text-align: center;
}

.remote-hub .featured-posts-footer .btn {
  display: inline-flex;
}

/* Benefits Section */
.remote-hub .benefits-section {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.remote-hub .benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .remote-hub .benefits-header {
    margin-bottom: 4rem;
  }
}

.remote-hub .benefits-header h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.remote-hub .benefits-header p {
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .remote-hub .benefits-header p {
    font-size: 1rem;
  }
}

.remote-hub .benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.remote-hub .benefit-card {
  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 (min-width: 768px) {
  .remote-hub .benefit-card {
    padding: 2.25rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .benefit-card {
    padding: 2.5rem;
    gap: 1.5rem;
  }
}

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

.remote-hub .benefit-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);
  font-size: 1.5rem;
}

.remote-hub .benefit-card h3 {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .remote-hub .benefit-card h3 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .benefit-card h3 {
    font-size: 1.5rem;
  }
}

.remote-hub .benefit-card p {
  color: #333333;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .remote-hub .benefit-card p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .benefit-card p {
    font-size: 1rem;
  }
}

/* How It Works Section */
.remote-hub .how-it-works-section {
  background-color: #ecf0f1;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.remote-hub .how-it-works-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .remote-hub .how-it-works-header {
    margin-bottom: 4rem;
  }
}

.remote-hub .how-it-works-header h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.remote-hub .how-it-works-header p {
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .remote-hub .how-it-works-header p {
    font-size: 1rem;
  }
}

.remote-hub .steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .remote-hub .steps-container {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .steps-container {
    gap: 3rem;
  }
}

.remote-hub .step-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

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

@media (min-width: 1024px) {
  .remote-hub .step-card {
    padding: 2.5rem;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.remote-hub .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(1rem, -1rem);
}

.remote-hub .step-card h3 {
  color: #1a1a1a;
  margin: 0;
  padding-top: 0.5rem;
  font-size: 1.375rem;
}

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

@media (min-width: 1024px) {
  .remote-hub .step-card h3 {
    font-size: 1.75rem;
  }
}

.remote-hub .step-card p {
  color: #333333;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

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

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

.remote-hub .step-image {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .remote-hub .step-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .remote-hub .step-image {
    height: 300px;
  }
}

.remote-hub .step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Statistics Section */
.remote-hub .statistics-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

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

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

.remote-hub .statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.85);
  z-index: 1;
}

.remote-hub .statistics-content {
  position: relative;
  z-index: 2;
}

.remote-hub .statistics-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .remote-hub .statistics-header {
    margin-bottom: 4rem;
  }
}

.remote-hub .statistics-header h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.remote-hub .statistics-header p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .remote-hub .statistics-header p {
    font-size: 1rem;
  }
}

.remote-hub .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.remote-hub .stat-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .remote-hub .stat-card {
    padding: 2.25rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .stat-card {
    padding: 2.5rem;
    gap: 1.5rem;
  }
}

.remote-hub .stat-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.remote-hub .stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin: 0;
}

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

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

.remote-hub .stat-card p {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

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

/* Contact Section */
.remote-hub .contact-section {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.remote-hub .contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .remote-hub .contact-header {
    margin-bottom: 4rem;
  }
}

.remote-hub .contact-header h2 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.remote-hub .contact-header p {
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .remote-hub .contact-header p {
    font-size: 1rem;
  }
}

.remote-hub .contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .remote-hub .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .contact-container {
    gap: 4rem;
  }
}

.remote-hub .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .remote-hub .contact-form {
    gap: 1.75rem;
  }
}

.remote-hub .contact-form .form-group {
  margin-bottom: 0;
}

.remote-hub .contact-form label {
  color: #1a1a1a;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

@media (min-width: 768px) {
  .remote-hub .contact-form label {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}

.remote-hub .contact-form input,
.remote-hub .contact-form textarea {
  font-size: 0.875rem;
}

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

.remote-hub .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.remote-hub .form-consent input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  cursor: pointer;
}

.remote-hub .form-consent label {
  font-size: 0.8125rem;
  margin-bottom: 0;
  cursor: pointer;
  color: #333333;
}

@media (min-width: 768px) {
  .remote-hub .form-consent label {
    font-size: 0.875rem;
  }
}

.remote-hub .form-consent a {
  color: var(--color-primary);
  text-decoration: none;
}

.remote-hub .form-consent a:hover {
  text-decoration: underline;
}

.remote-hub .form-submit-btn {
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .remote-hub .form-submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

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

.remote-hub .form-submit-btn:active {
  transform: translateY(0);
}

.remote-hub .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .remote-hub .contact-info {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .contact-info {
    gap: 3rem;
  }
}

.remote-hub .contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .remote-hub .contact-info-item {
    gap: 1.25rem;
  }
}

.remote-hub .contact-info-item i {
  font-size: 2rem;
  color: var(--color-primary);
}

.remote-hub .contact-info-item h4 {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.125rem;
}

.remote-hub .contact-info-item p {
  color: #333333;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .remote-hub .contact-info-item p {
    font-size: 0.9375rem;
  }
}

/* CTA Section */
.remote-hub .cta-section {
  background-color: #1a1a1a;
  padding: 3rem 0;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .remote-hub .cta-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .remote-hub .cta-section {
    padding: 5rem 0;
  }
}

.remote-hub .cta-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .remote-hub .cta-content {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .remote-hub .cta-content {
    gap: 2.5rem;
  }
}

.remote-hub .cta-section h2 {
  color: #ffffff;
  margin: 0;
}

.remote-hub .cta-section p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0;
  font-size: 0.9375rem;
}

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

.remote-hub .btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .remote-hub .btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  border-top: 1px solid #333333;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-text {
  flex-grow: 1;
}

.cookie-text p {
  color: #cbd5e1;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-text p {
    font-size: 0.875rem;
    text-align: left;
  }
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  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: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.cookie-decline {
  background-color: transparent;
  color: #cbd5e1;
  border: 1px solid #cbd5e1;
}

.cookie-decline:hover {
  background-color: rgba(203, 213, 225, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* Hidden Cookie Banner */
.cookie-banner.hidden {
  display: none;
}

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

  @media (min-width: 768px) {
    .footer {
      padding: 4rem 0 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .footer {
      padding: 5rem 0 3rem;
    }
  }

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

  @media (min-width: 768px) {
    .footer .container {
      padding: 0 var(--spacing-lg);
    }
  }

  @media (min-width: 1024px) {
    .footer .container {
      padding: 0 var(--spacing-xl);
    }
  }

  .footer-content {
    display: block;
  }

  /* About Section */
  .footer-about {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  @media (min-width: 768px) {
    .footer-about {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-about {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  .footer-about-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h4-mobile);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .footer-about-title {
      font-size: var(--font-size-h4-tablet);
      margin-bottom: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-about-title {
      font-size: var(--font-size-h4-desktop);
    }
  }

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-mobile);
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 55ch;
  }

  @media (min-width: 768px) {
    .footer-about-text {
      font-size: var(--font-size-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .footer-about-text {
      font-size: var(--font-size-body-desktop);
      line-height: 1.7;
    }
  }

  /* Navigation Section */
  .footer-nav-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  @media (min-width: 768px) {
    .footer-nav-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  .footer-nav-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h4-mobile);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .footer-nav-title {
      font-size: var(--font-size-h4-tablet);
      margin-bottom: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-title {
      font-size: var(--font-size-h4-desktop);
      margin-bottom: 1.5rem;
    }
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

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

  @media (min-width: 1024px) {
    .footer-nav {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 45rem;
    }
  }

  .footer-link {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-mobile);
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
  }

  @media (min-width: 768px) {
    .footer-link {
      font-size: var(--font-size-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .footer-link {
      font-size: var(--font-size-body-desktop);
    }
  }

  .footer-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
    transform: translateX(4px);
  }

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

  /* Legal Section */
  .footer-legal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  @media (min-width: 768px) {
    .footer-legal-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  .footer-legal-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h4-mobile);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .footer-legal-title {
      font-size: var(--font-size-h4-tablet);
      margin-bottom: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-title {
      font-size: var(--font-size-h4-desktop);
      margin-bottom: 1.5rem;
    }
  }

  .footer-legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .footer-legal-nav {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 30rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-nav {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 35rem;
    }
  }

  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-mobile);
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
  }

  @media (min-width: 768px) {
    .footer-legal-link {
      font-size: var(--font-size-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-link {
      font-size: var(--font-size-body-desktop);
    }
  }

  .footer-legal-link:hover {
    color: var(--color-secondary);
    text-decoration: underline;
    transform: translateX(3px);
  }

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

  /* Copyright Section */
  .footer-copyright {
    padding-top: 1.5rem;
  }

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

  @media (min-width: 1024px) {
    .footer-copyright {
      padding-top: 2.5rem;
    }
  }

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-mobile);
    font-weight: var(--font-weight-regular);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
  }

  @media (min-width: 768px) {
    .footer-copyright-text {
      font-size: var(--font-size-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .footer-copyright-text {
      font-size: var(--font-size-body-desktop);
    }
  }

  /* Accessibility: Reduced motion support */
  @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 Specific Styles - Remote Work Collaboration Kazakhstan */

  .category-page-remote-work-collaboration-kazakhstan {
    background-color: #ffffff;
  }

  /* ==================== HERO SECTION ==================== */
  .category-hero-remote-work-collaboration-kazakhstan {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .category-hero-remote-work-collaboration-kazakhstan {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .category-hero-remote-work-collaboration-kazakhstan {
      padding: 6rem 0;
    }
  }

  .hero-content-remote-work-collaboration-kazakhstan {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .hero-content-remote-work-collaboration-kazakhstan {
      gap: 2rem;
    }
  }

  .category-hero-remote-work-collaboration-kazakhstan h1 {
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .category-hero-remote-work-collaboration-kazakhstan h1 {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 1024px) {
    .category-hero-remote-work-collaboration-kazakhstan h1 {
      font-size: 3.5rem;
    }
  }

  .category-hero-remote-work-collaboration-kazakhstan > .container > .hero-content-remote-work-collaboration-kazakhstan > p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 650px;
  }

  @media (min-width: 768px) {
    .category-hero-remote-work-collaboration-kazakhstan > .container > .hero-content-remote-work-collaboration-kazakhstan > p {
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .category-hero-remote-work-collaboration-kazakhstan > .container > .hero-content-remote-work-collaboration-kazakhstan > p {
      font-size: 1.1rem;
    }
  }

  .hero-stats-remote-work-collaboration-kazakhstan {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .hero-stats-remote-work-collaboration-kazakhstan {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .hero-stats-remote-work-collaboration-kazakhstan {
      gap: 3rem;
    }
  }

  .stat-item-remote-work-collaboration-kazakhstan {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-number-remote-work-collaboration-kazakhstan {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
  }

  @media (min-width: 768px) {
    .stat-number-remote-work-collaboration-kazakhstan {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .stat-number-remote-work-collaboration-kazakhstan {
      font-size: 3rem;
    }
  }

  .stat-label-remote-work-collaboration-kazakhstan {
    color: #c0c0c0;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  @media (min-width: 768px) {
    .stat-label-remote-work-collaboration-kazakhstan {
      font-size: 0.9rem;
    }
  }

  /* ==================== POSTS GRID SECTION ==================== */
  .posts-grid-section-remote-work-collaboration-kazakhstan {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .posts-grid-section-remote-work-collaboration-kazakhstan {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .posts-grid-section-remote-work-collaboration-kazakhstan {
      padding: 6rem 0;
    }
  }

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

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

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

  .card-remote-work-collaboration-kazakhstan {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .card-remote-work-collaboration-kazakhstan {
      padding: 1.5rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .card-remote-work-collaboration-kazakhstan {
      padding: 1.75rem;
      gap: 1.5rem;
    }
  }

  .card-remote-work-collaboration-kazakhstan:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
  }

  .card-image-wrapper-remote-work-collaboration-kazakhstan {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #f0f0f0;
  }

  @media (min-width: 768px) {
    .card-image-wrapper-remote-work-collaboration-kazakhstan {
      height: 220px;
    }
  }

  @media (min-width: 1024px) {
    .card-image-wrapper-remote-work-collaboration-kazakhstan {
      height: 240px;
    }
  }

  .card-image-wrapper-remote-work-collaboration-kazakhstan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card-remote-work-collaboration-kazakhstan h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0;
  }

  @media (min-width: 768px) {
    .card-remote-work-collaboration-kazakhstan h3 {
      font-size: 1.35rem;
    }
  }

  @media (min-width: 1024px) {
    .card-remote-work-collaboration-kazakhstan h3 {
      font-size: 1.5rem;
    }
  }

  .card-remote-work-collaboration-kazakhstan p {
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .card-remote-work-collaboration-kazakhstan p {
      font-size: 0.9rem;
    }
  }

  @media (min-width: 1024px) {
    .card-remote-work-collaboration-kazakhstan p {
      font-size: 0.95rem;
    }
  }

  .card-link-remote-work-collaboration-kazakhstan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: auto;
  }

  .card-link-remote-work-collaboration-kazakhstan:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
  }

  .card-link-remote-work-collaboration-kazakhstan::after {
    content: '→';
    font-size: 1.1rem;
  }

  /* ==================== ADDITIONAL SECTION 1: INSIGHTS ==================== */
  .additional-section-one-remote-work-collaboration-kazakhstan {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .additional-section-one-remote-work-collaboration-kazakhstan {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .additional-section-one-remote-work-collaboration-kazakhstan {
      padding: 6rem 0;
    }
  }

  .additional-content-one-remote-work-collaboration-kazakhstan h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .additional-content-one-remote-work-collaboration-kazakhstan h2 {
      font-size: 2.25rem;
      margin-bottom: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .additional-content-one-remote-work-collaboration-kazakhstan h2 {
      font-size: 2.75rem;
      margin-bottom: 3rem;
    }
  }

  .insights-grid-remote-work-collaboration-kazakhstan {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .insight-card-remote-work-collaboration-kazakhstan {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .insight-card-remote-work-collaboration-kazakhstan {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .insight-icon-remote-work-collaboration-kazakhstan {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  @media (min-width: 768px) {
    .insight-icon-remote-work-collaboration-kazakhstan {
      width: 3rem;
      height: 3rem;
      font-size: 1.75rem;
    }
  }

  .insight-card-remote-work-collaboration-kazakhstan h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .insight-card-remote-work-collaboration-kazakhstan h3 {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .insight-card-remote-work-collaboration-kazakhstan h3 {
      font-size: 1.35rem;
    }
  }

  .insight-card-remote-work-collaboration-kazakhstan p {
    color: #555555;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .insight-card-remote-work-collaboration-kazakhstan p {
      font-size: 0.9rem;
    }
  }

  @media (min-width: 1024px) {
    .insight-card-remote-work-collaboration-kazakhstan p {
      font-size: 0.95rem;
    }
  }

  /* ==================== ADDITIONAL SECTION 2: CHECKLIST ==================== */
  .additional-section-two-remote-work-collaboration-kazakhstan {
    background: linear-gradient(135deg, #ecf0f1 0%, #f5f5f5 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .additional-section-two-remote-work-collaboration-kazakhstan {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .additional-section-two-remote-work-collaboration-kazakhstan {
      padding: 6rem 0;
    }
  }

  .additional-content-two-remote-work-collaboration-kazakhstan h2 {
    color: #1a1a1a;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .additional-content-two-remote-work-collaboration-kazakhstan h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .additional-content-two-remote-work-collaboration-kazakhstan h2 {
      font-size: 2.75rem;
      margin-bottom: 2rem;
    }
  }

  .section-intro-remote-work-collaboration-kazakhstan {
    color: #555555;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .section-intro-remote-work-collaboration-kazakhstan {
      font-size: 1rem;
      margin-bottom: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .section-intro-remote-work-collaboration-kazakhstan {
      font-size: 1.05rem;
      margin-bottom: 3rem;
    }
  }

  .checklist-columns-remote-work-collaboration-kazakhstan {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .checklist-columns-remote-work-collaboration-kazakhstan {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .checklist-columns-remote-work-collaboration-kazakhstan {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
  }

  .checklist-column-remote-work-collaboration-kazakhstan h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }

  @media (min-width: 768px) {
    .checklist-column-remote-work-collaboration-kazakhstan h3 {
      font-size: 1.35rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .checklist-column-remote-work-collaboration-kazakhstan h3 {
      font-size: 1.5rem;
      margin-bottom: 1.75rem;
    }
  }

  .checklist-list-remote-work-collaboration-kazakhstan {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .checklist-list-remote-work-collaboration-kazakhstan {
      gap: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .checklist-list-remote-work-collaboration-kazakhstan {
      gap: 1.25rem;
    }
  }

  .checklist-list-remote-work-collaboration-kazakhstan li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #444444;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .checklist-list-remote-work-collaboration-kazakhstan li {
      font-size: 0.95rem;
      gap: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .checklist-list-remote-work-collaboration-kazakhstan li {
      font-size: 1rem;
    }
  }

  .checklist-list-remote-work-collaboration-kazakhstan li i {
    color: var(--color-success);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .checklist-list-remote-work-collaboration-kazakhstan li i {
      font-size: 1.2rem;
    }
  }

  /* ==================== RESPONSIVE ADJUSTMENTS ==================== */
  @media (max-width: 767px) {
    .category-page-remote-work-collaboration-kazakhstan .posts-grid-remote-work-collaboration-kazakhstan {
      gap: 1rem;
    }

    .card-remote-work-collaboration-kazakhstan {
      padding: 1rem;
      gap: 0.75rem;
    }

    .card-image-wrapper-remote-work-collaboration-kazakhstan {
      height: 180px;
    }

    .insights-grid-remote-work-collaboration-kazakhstan {
      gap: 1rem;
    }

    .insight-card-remote-work-collaboration-kazakhstan {
      padding: 1.25rem;
      gap: 0.75rem;
    }
  }

/* Post Page 1 Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

  :root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    --color-bg-dark: #0f172a;
    --color-bg-light: #f8fafc;
    --color-bg-card: #ffffff;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-light: #ffffff;
    --color-border: #e2e8f0;
    --color-error: #ef4444;
    --color-success: #10b981;

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --font-size-h1-mobile: 2.25rem;
    --font-size-h1-tablet: 2.75rem;
    --font-size-h1-desktop: 3.75rem;
    --font-size-h2-mobile: 1.875rem;
    --font-size-h2-tablet: 2.25rem;
    --font-size-h2-desktop: 3rem;
    --font-size-h3-mobile: 1.5rem;
    --font-size-h3-tablet: 1.75rem;
    --font-size-h3-desktop: 2.25rem;
    --font-size-body-mobile: 0.875rem;
    --font-size-body-tablet: 0.9375rem;
    --font-size-body-desktop: 1rem;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    --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);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;

    --icon-sm: 1.25rem;
    --icon-md: 1.5rem;
    --icon-lg: 2rem;
    --icon-xl: 3rem;
    --icon-2xl: 4rem;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-mobile);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  @media (min-width: 768px) {
    body {
      font-size: var(--font-size-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    body {
      font-size: var(--font-size-body-desktop);
    }
  }

  h1 {
    font-family: var(--font-display);
    font-size: var(--font-size-h1-mobile);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    h1 {
      font-size: var(--font-size-h1-tablet);
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: var(--font-size-h1-desktop);
    }
  }

  h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-h2-mobile);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  @media (min-width: 768px) {
    h2 {
      font-size: var(--font-size-h2-tablet);
    }
  }

  @media (min-width: 1024px) {
    h2 {
      font-size: var(--font-size-h2-desktop);
    }
  }

  h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-h3-mobile);
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    h3 {
      font-size: var(--font-size-h3-tablet);
    }
  }

  @media (min-width: 1024px) {
    h3 {
      font-size: var(--font-size-h3-desktop);
    }
  }

  h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
  }

  p {
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
  }

  p:last-child {
    margin-bottom: 0;
  }

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

  ul, ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }

  li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
  }

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

  @media (min-width: 768px) {
    .container {
      padding: 0 var(--spacing-lg);
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 0 var(--spacing-xl);
    }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-body-mobile);
    font-weight: var(--font-weight-semibold);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
  }

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

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

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

  .btn-outline-light {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
  }

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

  section {
    overflow: hidden;
  }

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

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

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

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

  .card h3 {
    margin: 0;
    color: var(--color-text-primary);
  }

  .card p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
  }

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

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

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

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

  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  /* Post-specific styles */
  .post-asynchronous-communication-distributed-teams {
    width: 100%;
  }

  /* Breadcrumbs */
  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-breadcrumbs {
    background-color: #f3f4f6;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-breadcrumbs a,
  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-breadcrumbs span {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-base);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-breadcrumbs a:hover {
    color: var(--color-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-breadcrumbs span {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
  }

  /* Hero Section */
  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-hero {
    background-color: #ffffff;
    padding: 4rem 0 3rem;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-hero {
      padding: 5rem 0 4rem;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-hero {
      padding: 6rem 0 5rem;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-hero h1 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-hero-lead {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-hero-lead {
      font-size: 1.25rem;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    color: var(--color-text-secondary);
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-meta {
      flex-direction: row;
      gap: var(--spacing-lg);
    }
  }

  /* Content Sections */
  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-1 {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-1 {
      padding: 6rem 0;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-1 h2 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-1 p {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-1 ul {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-1 li {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2 {
    background-color: #ffffff;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2 {
      padding: 6rem 0;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2-wrapper {
      grid-template-columns: 1fr 1fr;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2 h2 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2 p {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2 ul {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-2 li {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-3 {
    background-color: #ecf0f1;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-3 {
      padding: 6rem 0;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-3 h2 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-3 p {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-3 ol {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-3 li {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-highlight-box {
    background-color: #ffffff;
    border-left: 4px solid var(--color-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-highlight-box p {
    color: var(--color-text-primary);
    margin: 0;
    font-style: italic;
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-4 {
    background-color: #ffffff;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-4 {
      padding: 6rem 0;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-4 h2 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-4 p {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-4 ul {
    color: var(--color-text-primary);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-content-4 li {
    color: var(--color-text-primary);
  }

  /* Conclusion Section */
  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-conclusion {
    background-color: var(--color-bg-dark);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-conclusion {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-conclusion {
      padding: 6rem 0;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-conclusion h2 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-conclusion p {
    color: #e0e0e0;
  }

  /* Related Posts Section */
  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related {
      padding: 6rem 0;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related h2 {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex: 1;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card-content {
      padding: var(--spacing-lg);
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card h3 {
    color: var(--color-text-primary);
    margin: 0;
    font-size: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card h3 {
      font-size: 1.375rem;
    }
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card p {
    color: var(--color-text-secondary);
    margin: 0;
    font-size: 0.9375rem;
    flex: 1;
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card-link {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-base);
    align-self: flex-start;
  }

  .post-asynchronous-communication-distributed-teams .asynchronous-communication-distributed-teams-related-card-link:hover {
    gap: var(--spacing-sm);
    color: var(--color-primary-dark);
  }

/* Post Page 2 Styles */
/* ============================================================
   POST: ИНСТРУМЕНТЫ ДЛЯ УПРАВЛЕНИЯ УДАЛЁННОЙ КОМАНДОЙ
   Complete CSS Isolation with post-remote-team-management-tools prefix
   ============================================================ */

.post-remote-team-management-tools {
  width: 100%;
}

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

.post-remote-team-management-tools .remote-team-management-tools-breadcrumbs {
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-breadcrumbs {
    padding: 2rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-breadcrumbs .container {
    font-size: 1rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-breadcrumbs a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

.post-remote-team-management-tools .remote-team-management-tools-breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.post-remote-team-management-tools .remote-team-management-tools-breadcrumbs span {
  color: var(--color-text-secondary);
}

.post-remote-team-management-tools .remote-team-management-tools-separator {
  color: var(--color-border);
  margin: 0 0.25rem;
}

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

.post-remote-team-management-tools .remote-team-management-tools-hero {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-hero {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-hero-content {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-hero h1 {
  color: var(--color-text-light);
  line-height: 1.2;
  max-width: 95%;
}

.post-remote-team-management-tools .remote-team-management-tools-lead {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 90%;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-lead {
    font-size: 1.125rem;
    max-width: 85%;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-lead {
    font-size: 1.25rem;
    max-width: 75%;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-meta {
    font-size: 1rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-read-time {
  color: #a0aec0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.post-remote-team-management-tools .remote-team-management-tools-read-time i {
  font-size: var(--icon-md);
  color: var(--color-primary);
}

/* ============================================================
   CONTENT SECTION 1
   ============================================================ */

.post-remote-team-management-tools .remote-team-management-tools-content-1 {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-1 {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-1-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-1-inner {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-1 h2 {
  color: var(--color-text-primary);
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-content-1 p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-1 p {
    font-size: 1.0625rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-list {
  color: var(--color-text-secondary);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-list {
    gap: 1rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-list li {
    font-size: 1rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-list li:before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

/* ============================================================
   CONTENT SECTION 2
   ============================================================ */

.post-remote-team-management-tools .remote-team-management-tools-content-2 {
  background-color: #f0f9ff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-2 {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-2-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-2-inner {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-2 h2 {
  color: var(--color-text-primary);
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-content-2 h3 {
  color: var(--color-primary);
  margin: 0;
  margin-top: 0.5rem;
  font-size: 1.375rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-2 h3 {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-2 h3 {
    font-size: 1.875rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-2 p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-2 p {
    font-size: 1.0625rem;
  }
}

/* ============================================================
   CONTENT SECTION 3
   ============================================================ */

.post-remote-team-management-tools .remote-team-management-tools-content-3 {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-3 {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-3-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-3-inner {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-3 h2 {
  color: var(--color-text-primary);
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-content-3 h3 {
  color: var(--color-secondary);
  margin: 0;
  margin-top: 0.5rem;
  font-size: 1.375rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-3 h3 {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-3 h3 {
    font-size: 1.875rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-3 p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-3 p {
    font-size: 1.0625rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-highlight {
  background-color: #dbeafe;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-highlight {
    padding: 2rem;
    margin-top: 1.5rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-highlight p {
  color: #0c4a6e;
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-highlight strong {
  color: #075985;
  font-weight: var(--font-weight-semibold);
}

/* ============================================================
   CONTENT SECTION 4
   ============================================================ */

.post-remote-team-management-tools .remote-team-management-tools-content-4 {
  background-color: #f0fdf4;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-4 {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-4-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-4-inner {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-4 h2 {
  color: var(--color-text-primary);
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-content-4 h3 {
  color: var(--color-secondary);
  margin: 0;
  margin-top: 0.5rem;
  font-size: 1.375rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-4 h3 {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-4 h3 {
    font-size: 1.875rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-4 p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-4 p {
    font-size: 1.0625rem;
  }
}

/* ============================================================
   CONTENT SECTION 5 - STEPS
   ============================================================ */

.post-remote-team-management-tools .remote-team-management-tools-content-5 {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-5 {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-5-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-5-inner {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-content-5 h2 {
  color: var(--color-text-primary);
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-content-5 p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-content-5 p {
    font-size: 1.0625rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-steps {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-step {
    gap: 2rem;
    padding: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-remote-team-management-tools .remote-team-management-tools-step h4 {
  color: var(--color-text-primary);
  margin: 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-step h4 {
    font-size: 1.25rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-step p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-step p {
    font-size: 1rem;
  }
}

/* ============================================================
   CONCLUSION SECTION
   ============================================================ */

.post-remote-team-management-tools .remote-team-management-tools-conclusion {
  background-color: #fef3c7;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-conclusion {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-conclusion-content {
    gap: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-conclusion h2 {
  color: #78350f;
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-conclusion p {
  color: #451a03;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-conclusion p {
    font-size: 1.0625rem;
  }
}

/* ============================================================
   RELATED POSTS SECTION
   ============================================================ */

.post-remote-team-management-tools .remote-team-management-tools-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-related {
    padding: 6rem 0;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-related-content {
    gap: 3rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-related h2 {
  color: var(--color-text-primary);
  margin: 0;
}

.post-remote-team-management-tools .remote-team-management-tools-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-related-card {
    gap: 1.25rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-remote-team-management-tools .remote-team-management-tools-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e5e7eb;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-card-image {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-card-image {
    height: 240px;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-remote-team-management-tools .remote-team-management-tools-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-card-body {
    gap: 1.25rem;
    padding: 2rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-card-body h3 {
  color: var(--color-text-primary);
  margin: 0;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-card-body h3 {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .post-remote-team-management-tools .remote-team-management-tools-card-body h3 {
    font-size: 1.5rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-card-body p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.post-remote-team-management-tools .remote-team-management-tools-card-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .post-remote-team-management-tools .remote-team-management-tools-card-link {
    font-size: 1rem;
  }
}

.post-remote-team-management-tools .remote-team-management-tools-card-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.post-remote-team-management-tools .remote-team-management-tools-card-link i {
  font-size: var(--icon-md);
  transition: transform var(--transition-base);
}

.post-remote-team-management-tools .remote-team-management-tools-card-link:hover i {
  transform: translateX(4px);
}

/* Post Page 3 Styles */
/* ============================================
   HYBRID WORK MODELS BEST PRACTICES POST
   Complete CSS Isolation with unique prefixes
   ============================================ */

.post-hybrid-work-models-best-practices {
  width: 100%;
}

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

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-breadcrumbs {
  background-color: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-breadcrumbs a {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-breadcrumbs span {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-separator {
  color: var(--color-border);
}

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

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero {
    padding: 8rem 0;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero-content h1 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero-content h1 {
    font-size: 3rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-lead {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-lead {
    font-size: 1.125rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-meta {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-meta span {
  color: #b0b0b0;
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-meta i {
  color: var(--color-secondary);
  font-size: 1rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-hero-image {
    display: block;
  }
}

/* ============================================
   SECTION 1: Understanding Hybrid Work
   ============================================ */

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 {
    padding: 6rem 0;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-content-1 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 h2 {
    font-size: 2.5rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 p {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-1 p {
    font-size: 1rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-image {
    display: block;
  }
}

/* ============================================
   SECTION 2: Popular Models
   ============================================ */

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-2 {
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-2 {
    padding: 6rem 0;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-content-2 {
  width: 100%;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-2 h2 {
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-2 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-2 h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-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);
  font-size: 1.5rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card h3 {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card h3 {
    font-size: 1.5rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card p {
  color: #333333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card p {
    font-size: 1rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card ul {
  margin: 1rem 0 0 0;
  padding-left: 1.5rem;
  list-style: none;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card li {
  color: #555555;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card li strong {
  color: #1a1a1a;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-model-card li:before {
  content: "✓ ";
  color: var(--color-secondary);
  margin-right: 0.5rem;
}

/* ============================================
   SECTION 3: Best Practices
   ============================================ */

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-3 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-3 {
    padding: 6rem 0;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-content-3 {
  width: 100%;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-3 h2 {
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-3 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-3 h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practices-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practices-list {
    gap: 2rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practice-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practice-item {
    padding: 2rem;
    gap: 2rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practice-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background-color: var(--color-secondary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practice-text h3 {
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practice-text h3 {
    font-size: 1.25rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practice-text p {
  color: #333333;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-practice-text p {
    font-size: 1rem;
  }
}

/* ============================================
   SECTION 4: Challenges and Solutions
   ============================================ */

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-4 {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef7 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-4 {
    padding: 6rem 0;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-content-4 {
  width: 100%;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-4 h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-4 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-4 h2 {
    font-size: 2.5rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-4 > .container > p {
  color: #333333;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenges {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-accent);
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge {
    padding: 2rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge h3 {
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge h3 {
    font-size: 1.25rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge h3 i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge p {
  color: #333333;
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge p {
    font-size: 1rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge p:last-child {
  margin-bottom: 0;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-challenge strong {
  color: #1a1a1a;
  font-weight: var(--font-weight-semibold);
}

/* ============================================
   SECTION 5: Conclusion
   ============================================ */

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 {
    padding: 6rem 0;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-conclusion {
  max-width: 900px;
  margin: 0 auto;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 h2 {
    font-size: 2.5rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 p {
  color: #333333;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-5 p {
    font-size: 1rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways {
  background-color: #f0f4f8;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways {
    padding: 2rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways h3 {
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways h3 {
    font-size: 1.25rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style: none;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways li {
  color: #333333;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways li {
    font-size: 1rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways li:before {
  content: "→ ";
  color: var(--color-primary);
  margin-right: 0.5rem;
  font-weight: var(--font-weight-bold);
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-key-takeaways li strong {
  color: #1a1a1a;
  font-weight: var(--font-weight-semibold);
}

/* ============================================
   RELATED POSTS SECTION
   ============================================ */

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related {
  background-color: #f8fafc;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related {
    padding: 6rem 0;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-content {
  width: 100%;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related h2 {
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-text {
    padding: 1.75rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-card h3 {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-card h3 {
    font-size: 1.25rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-card p {
  color: #555555;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-card p {
    font-size: 0.95rem;
  }
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-related-link i {
  font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 767px) {
  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-text-block {
    order: 2;
  }

  .post-hybrid-work-models-best-practices .hybrid-work-models-best-practices-section-image {
    order: 1;
    margin-bottom: 1rem;
  }
}

/* Post Page 4 Styles */
/* ========================================
   POST: Productive Home Office Setup
   Isolation: productive-home-office-setup- prefix
   ======================================== */

.post-productive-home-office-setup {
  width: 100%;
}

/* Breadcrumbs Navigation */
.post-productive-home-office-setup .productive-home-office-setup-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.post-productive-home-office-setup .productive-home-office-setup-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.post-productive-home-office-setup .productive-home-office-setup-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.post-productive-home-office-setup .productive-home-office-setup-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-productive-home-office-setup .productive-home-office-setup-breadcrumbs span {
  color: var(--color-text-secondary);
}

.post-productive-home-office-setup .productive-home-office-setup-breadcrumb-separator {
  color: var(--color-border);
  margin: 0 0.25rem;
}

/* Hero Section */
.post-productive-home-office-setup .productive-home-office-setup-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-hero {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-productive-home-office-setup .productive-home-office-setup-hero h1 {
  color: var(--color-text-light);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-hero h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-hero h1 {
    font-size: 3.5rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-lead {
    font-size: 1.1rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.post-productive-home-office-setup .productive-home-office-setup-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-productive-home-office-setup .productive-home-office-setup-read-time i {
  font-size: var(--icon-md);
}

/* Content Section 1 */
.post-productive-home-office-setup .productive-home-office-setup-section-1 {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-1 {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-content-1 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-productive-home-office-setup .productive-home-office-setup-section-1 h2 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.post-productive-home-office-setup .productive-home-office-setup-section-1 p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-1 p {
    font-size: 1rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-list {
  margin-left: var(--spacing-md);
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-list li {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-list li {
    font-size: 1rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-image-1 {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Content Section 2 */
.post-productive-home-office-setup .productive-home-office-setup-section-2 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-2 {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-content-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-productive-home-office-setup .productive-home-office-setup-section-2 h2 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-section-2 > .container > .productive-home-office-setup-content-2 > p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-2 > .container > .productive-home-office-setup-content-2 > p {
    font-size: 1rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

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

.post-productive-home-office-setup .productive-home-office-setup-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(102, 126, 234, 0.1);
  border-radius: var(--radius-md);
  font-size: var(--icon-lg);
  color: var(--color-primary);
}

.post-productive-home-office-setup .productive-home-office-setup-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

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

/* Content Section 3 */
.post-productive-home-office-setup .productive-home-office-setup-section-3 {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-3 {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-content-3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-productive-home-office-setup .productive-home-office-setup-text-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-productive-home-office-setup .productive-home-office-setup-section-3 h2 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-section-3 h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-3 h3 {
    font-size: 1.5rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-section-3 p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-3 p {
    font-size: 1rem;
  }
}

/* Content Section 4 */
.post-productive-home-office-setup .productive-home-office-setup-section-4 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-4 {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-productive-home-office-setup .productive-home-office-setup-section-4 h2 {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-section-4 > .container > .productive-home-office-setup-content-4 > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-4 > .container > .productive-home-office-setup-content-4 > p {
    font-size: 1rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-productive-home-office-setup .productive-home-office-setup-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-step {
    padding: 2rem;
    gap: 2rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
  color: var(--color-text-light);
  flex-shrink: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-productive-home-office-setup .productive-home-office-setup-step h4 {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-step p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-step p {
    font-size: 1rem;
  }
}

/* Content Section 5 */
.post-productive-home-office-setup .productive-home-office-setup-section-5 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-5 {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-content-5 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-productive-home-office-setup .productive-home-office-setup-text-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-text-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-productive-home-office-setup .productive-home-office-setup-section-5 h2 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-section-5 h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-5 h3 {
    font-size: 1.5rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-section-5 p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-5 p {
    font-size: 1rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-image-2 {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Content Section 6 */
.post-productive-home-office-setup .productive-home-office-setup-section-6 {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-6 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-6 {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-content-6 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-productive-home-office-setup .productive-home-office-setup-section-6 h2 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-section-6 > .container > .productive-home-office-setup-content-6 > p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-section-6 > .container > .productive-home-office-setup-content-6 > p {
    font-size: 1rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-tool-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-tool-item {
    padding: 2rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-tool-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-productive-home-office-setup .productive-home-office-setup-tool-item h4 {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-tool-item h4 i {
  color: var(--color-primary);
  font-size: var(--icon-lg);
}

.post-productive-home-office-setup .productive-home-office-setup-tool-item p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-tool-item p {
    font-size: 1rem;
  }
}

/* Conclusion Section */
.post-productive-home-office-setup .productive-home-office-setup-conclusion {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-conclusion {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-productive-home-office-setup .productive-home-office-setup-conclusion h2 {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.post-productive-home-office-setup .productive-home-office-setup-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-text-light);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-highlight {
    padding: 2.5rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-highlight p {
    font-size: 1rem;
  }
}

/* Related Posts Section */
.post-productive-home-office-setup .productive-home-office-setup-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-related {
    padding: 6rem 0;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-productive-home-office-setup .productive-home-office-setup-related h2 {
  color: var(--color-text-primary);
  margin-bottom: 0;
  text-align: center;
}

.post-productive-home-office-setup .productive-home-office-setup-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-productive-home-office-setup .productive-home-office-setup-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-related-card {
    gap: 1.25rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-productive-home-office-setup .productive-home-office-setup-related-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-productive-home-office-setup .productive-home-office-setup-related-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-related-card-content {
    padding: 1.75rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-related-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-related-card h3 {
    font-size: 1.375rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-productive-home-office-setup .productive-home-office-setup-related-card p {
    font-size: 0.9375rem;
  }
}

.post-productive-home-office-setup .productive-home-office-setup-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.9375rem;
  margin-top: auto;
  transition: all var(--transition-base);
}

.post-productive-home-office-setup .productive-home-office-setup-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-productive-home-office-setup .productive-home-office-setup-related-link i {
  font-size: var(--icon-md);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .post-productive-home-office-setup .productive-home-office-setup-breadcrumbs .container {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .post-productive-home-office-setup .productive-home-office-setup-breadcrumb-separator {
    margin: 0 0.125rem;
  }
}

/* Post Page 5 Styles */
/* Post: Remote Company Culture Building - Complete CSS Isolation */

  /* Hero Section */
  .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs {
    background-color: #f8fafc;
    padding: 1rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs {
      padding: 1.25rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs a,
  .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs span {
    font-size: 0.875rem;
    color: #64748b;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs a,
    .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs span {
      font-size: 0.9375rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs a {
    color: #2563eb;
    transition: color var(--transition-base);
  }

  .post-remote-company-culture-building .remote-company-culture-building-breadcrumbs a:hover {
    color: #1e40af;
  }

  .post-remote-company-culture-building .remote-company-culture-building-breadcrumb-separator {
    color: #cbd5e1;
    margin: 0 0.5rem;
  }

  /* Hero Main Section */
  .post-remote-company-culture-building .remote-company-culture-building-hero {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-hero {
      padding: 6rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-hero .container {
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-hero h1 {
    color: #0f172a;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-hero h1 {
      margin-bottom: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-lead {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-lead {
      font-size: 1.0625rem;
      margin-bottom: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-lead {
      font-size: 1.125rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-hero-meta {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }

  .post-remote-company-culture-building .remote-company-culture-building-read-time,
  .post-remote-company-culture-building .remote-company-culture-building-date {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-read-time,
    .post-remote-company-culture-building .remote-company-culture-building-date {
      font-size: 0.9375rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-read-time i,
  .post-remote-company-culture-building .remote-company-culture-building-date i {
    color: #2563eb;
    font-size: 1rem;
  }

  .post-remote-company-culture-building .remote-company-culture-building-hero-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-hero-image img {
      max-height: 400px;
    }
  }

  /* Content Section 1 */
  .post-remote-company-culture-building .remote-company-culture-building-content-1 {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-1 {
      padding: 6rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-content-1 h2 {
    color: #0f172a;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-1 h2 {
      margin-bottom: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-content-1 p {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-1 p {
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-1 p {
      font-size: 1rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-highlight-box {
    background-color: #ffffff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-highlight-box {
      padding: 2rem;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-highlight-icon {
    display: flex;
    align-items: flex-start;
    font-size: 1.5rem;
    color: #2563eb;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-highlight-icon {
      font-size: 1.75rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-highlight-text {
    color: #1e293b;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-highlight-text {
      font-size: 0.9375rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-highlight-text {
      font-size: 1rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-highlight-text strong {
    color: #0f172a;
  }

  /* Content Section 2 */
  .post-remote-company-culture-building .remote-company-culture-building-content-2 {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-2 {
      padding: 6rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-content-2 h2 {
    color: #0f172a;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-2 h2 {
      margin-bottom: 3rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-strategies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategies-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategies-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-strategy-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid #e2e8f0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategy-card {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-strategy-card:hover {
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    border-color: #2563eb;
    transform: translateY(-4px);
  }

  .post-remote-company-culture-building .remote-company-culture-building-strategy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #dbeafe;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: #2563eb;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategy-icon {
      width: 3rem;
      height: 3rem;
      font-size: 1.5rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-strategy-card h3 {
    color: #0f172a;
    font-size: 1.125rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategy-card h3 {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategy-card h3 {
      font-size: 1.375rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-strategy-card p {
    color: #475569;
    font-size: 0.8125rem;
    line-height: 1.7;
    margin: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategy-card p {
      font-size: 0.875rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-strategy-card p {
      font-size: 0.9375rem;
    }
  }

  /* Content Section 3 */
  .post-remote-company-culture-building .remote-company-culture-building-content-3 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-3 {
      padding: 6rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-content-3 h2 {
    color: #ffffff;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-3 h2 {
      margin-bottom: 3rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-image-text-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-image-text-wrapper {
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2.5rem;
      margin-bottom: 4rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-image-text-wrapper {
      gap: 3rem;
      margin-bottom: 4rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-text-block h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }

  .post-remote-company-culture-building .remote-company-culture-building-text-block h3:first-child {
    margin-top: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-text-block h3 {
      font-size: 1.375rem;
      margin-bottom: 1.25rem;
      margin-top: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-text-block h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      margin-top: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-text-block p {
    color: #e2e8f0;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-text-block p {
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-text-block p {
      font-size: 1rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-image-block img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-image-block img {
      max-height: 350px;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-checklist {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-checklist {
      padding: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-checklist {
      padding: 3rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-checklist h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-checklist h3 {
      font-size: 1.375rem;
      margin-bottom: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-checklist-items {
      gap: 1.25rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-checklist-items li {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    margin: 0;
  }

  .post-remote-company-culture-building .remote-company-culture-building-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: #10b981;
    margin-top: 0.125rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-check-icon {
      font-size: 1.5rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-checklist-items li span:not(.remote-company-culture-building-check-icon) {
    color: #e2e8f0;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-checklist-items li span:not(.remote-company-culture-building-check-icon) {
      font-size: 0.9375rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-checklist-items li span:not(.remote-company-culture-building-check-icon) {
      font-size: 1rem;
    }
  }

  /* Content Section 4 */
  .post-remote-company-culture-building .remote-company-culture-building-content-4 {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-4 {
      padding: 6rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-content-4 h2 {
    color: #0f172a;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-content-4 h2 {
      margin-bottom: 3rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenges {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenges {
      gap: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenge-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-left: 4px solid #10b981;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenge-item {
      padding: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenge-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenge-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenge-header h4 {
    color: #0f172a;
    font-size: 1.125rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenge-header h4 {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenge-header h4 {
      font-size: 1.375rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: #d1fae5;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    color: #10b981;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenge-icon {
      width: 2.25rem;
      height: 2.25rem;
      font-size: 1.25rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenge-item p {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenge-item p {
      font-size: 0.9375rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-challenge-item p {
      font-size: 1rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-challenge-item strong {
    color: #0f172a;
  }

  /* Conclusion Section */
  .post-remote-company-culture-building .remote-company-culture-building-conclusion {
    background-color: #ffffff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-conclusion {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-conclusion {
      padding: 6rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-conclusion h2 {
    color: #0f172a;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-conclusion h2 {
      margin-bottom: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-conclusion-content {
    max-width: 800px;
  }

  .post-remote-company-culture-building .remote-company-culture-building-conclusion p {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-conclusion p {
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-conclusion p {
      font-size: 1rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-conclusion p:last-child {
    margin-bottom: 0;
  }

  /* Related Posts Section */
  .post-remote-company-culture-building .remote-company-culture-building-related {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-related {
      padding: 6rem 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-related h2 {
    color: #0f172a;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-related h2 {
      margin-bottom: 3rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-decoration: none;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-card {
      gap: 0;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card:hover .remote-company-culture-building-related-card-image img {
    transform: scale(1.05);
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-card-content {
      padding: 1.75rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-card-content {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card h3 {
    color: #0f172a;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.4;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-card h3 {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-card h3 {
      font-size: 1.375rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card p {
    color: #475569;
    font-size: 0.8125rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-card p {
      font-size: 0.875rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-related-card p {
      font-size: 0.9375rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-read-more {
    display: inline-flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    color: #2563eb;
    font-size: 0.8125rem;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
    margin-top: auto;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-read-more {
      font-size: 0.875rem;
    }
  }

  @media (min-width: 1024px) {
    .post-remote-company-culture-building .remote-company-culture-building-read-more {
      font-size: 0.9375rem;
    }
  }

  .post-remote-company-culture-building .remote-company-culture-building-related-card:hover .remote-company-culture-building-read-more {
    color: #1e40af;
    gap: 0.75rem;
  }

  .post-remote-company-culture-building .remote-company-culture-building-read-more i {
    font-size: 0.75rem;
  }

  @media (min-width: 768px) {
    .post-remote-company-culture-building .remote-company-culture-building-read-more i {
      font-size: 0.8125rem;
    }
  }

/* Privacy Page Styles */
.work-docs {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light);
  color: var(--color-text-primary);
}

.work-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.work-docs-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
  .work-docs-content {
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .work-docs-content {
    gap: var(--spacing-3xl);
    padding: var(--spacing-3xl) 0;
  }
}

.work-docs h1 {
  font-size: var(--font-size-h1-mobile);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin: 0;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .work-docs h1 {
    font-size: var(--font-size-h1-tablet);
  }
}

@media (min-width: 1024px) {
  .work-docs h1 {
    font-size: var(--font-size-h1-desktop);
  }
}

.work-docs .updated-date {
  font-size: var(--font-size-body-mobile);
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
}

@media (min-width: 768px) {
  .work-docs .updated-date {
    font-size: var(--font-size-body-desktop);
  }
}

.work-docs-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .work-docs-section {
    gap: var(--spacing-lg);
  }
}

.work-docs h2 {
  font-size: var(--font-size-h2-mobile);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin: 0;
  color: var(--color-text-primary);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--color-border);
}

@media (min-width: 768px) {
  .work-docs h2 {
    font-size: var(--font-size-h2-tablet);
    padding-top: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .work-docs h2 {
    font-size: var(--font-size-h2-desktop);
  }
}

.work-docs p {
  font-size: var(--font-size-body-mobile);
  line-height: 1.6;
  margin: 0;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .work-docs p {
    font-size: var(--font-size-body-tablet);
    line-height: 1.7;
  }
}

@media (min-width: 1024px) {
  .work-docs p {
    font-size: var(--font-size-body-desktop);
  }
}

.work-docs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.work-docs li {
  font-size: var(--font-size-body-mobile);
  line-height: 1.6;
  color: var(--color-text-primary);
  padding-left: var(--spacing-md);
  position: relative;
}

@media (min-width: 768px) {
  .work-docs li {
    font-size: var(--font-size-body-tablet);
    padding-left: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .work-docs li {
    font-size: var(--font-size-body-desktop);
  }
}

.work-docs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.work-docs strong {
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

.contact-info-section {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .contact-info-section {
    padding: var(--spacing-lg);
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .contact-info-section {
    padding: var(--spacing-2xl);
  }
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.contact-info-label {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-body-mobile);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .contact-info-label {
    font-size: var(--font-size-body-tablet);
  }
}

@media (min-width: 1024px) {
  .contact-info-label {
    font-size: var(--font-size-body-desktop);
  }
}

.contact-info-value {
  font-size: var(--font-size-body-mobile);
  line-height: 1.6;
  color: var(--color-text-secondary);
  word-break: break-word;
}

@media (min-width: 768px) {
  .contact-info-value {
    font-size: var(--font-size-body-tablet);
  }
}

@media (min-width: 1024px) {
  .contact-info-value {
    font-size: var(--font-size-body-desktop);
  }
}

.icon-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.icon-label i {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Thank You Page Styles */
/* ============================================
   THANK YOU PAGE - MAIN COMPONENT
   ============================================ */

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1e40af;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-bg-dark: #0f172a;
  --color-bg-light: #f8fafc;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-light: #ffffff;
  --color-border: #e2e8f0;
  --color-error: #ef4444;
  --color-success: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-size-h1-mobile: 2.25rem;
  --font-size-h1-tablet: 2.75rem;
  --font-size-h1-desktop: 3.75rem;
  --font-size-h2-mobile: 1.875rem;
  --font-size-h2-tablet: 2.25rem;
  --font-size-h2-desktop: 3rem;
  --font-size-h3-mobile: 1.5rem;
  --font-size-h3-tablet: 1.75rem;
  --font-size-h3-desktop: 2.25rem;
  --font-size-h4-mobile: 1.25rem;
  --font-size-h4-tablet: 1.375rem;
  --font-size-h4-desktop: 1.875rem;
  --font-size-body-mobile: 0.875rem;
  --font-size-body-tablet: 0.9375rem;
  --font-size-body-desktop: 1rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --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);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
  --icon-2xl: 4rem;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  font-size: var(--font-size-body-mobile);
}

@media (min-width: 768px) {
  body {
    font-size: var(--font-size-body-tablet);
  }
}

@media (min-width: 1024px) {
  body {
    font-size: var(--font-size-body-desktop);
  }
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* ============================================
   THANK YOU HERO SECTION
   ============================================ */

.thank-hero-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.thank-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .thank-hero-content {
    gap: var(--spacing-xl);
  }
}

.thank-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease-out;
}

@media (min-width: 768px) {
  .thank-icon {
    width: 120px;
    height: 120px;
  }
}

.thank-icon i {
  font-size: var(--icon-2xl);
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .thank-icon i {
    font-size: 3.5rem;
  }
}

.thank-hero-section h1 {
  font-size: var(--font-size-h1-mobile);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .thank-hero-section h1 {
    font-size: var(--font-size-h1-tablet);
  }
}

@media (min-width: 1024px) {
  .thank-hero-section h1 {
    font-size: var(--font-size-h1-desktop);
  }
}

.thank-lead {
  font-size: var(--font-size-h4-mobile);
  color: var(--color-secondary);
  font-weight: var(--font-weight-semibold);
}

@media (min-width: 768px) {
  .thank-lead {
    font-size: var(--font-size-h4-tablet);
  }
}

@media (min-width: 1024px) {
  .thank-lead {
    font-size: var(--font-size-h4-desktop);
  }
}

.thank-description {
  max-width: 600px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: var(--font-size-body-mobile);
}

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

@media (min-width: 1024px) {
  .thank-description {
    font-size: var(--font-size-body-desktop);
  }
}

/* ============================================
   THANK YOU NEXT SECTION
   ============================================ */

.thank-next-section {
  background-color: var(--color-bg-card);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

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

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

.thank-next-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .thank-next-content {
    gap: var(--spacing-2xl);
  }
}

.thank-next-section h2 {
  font-size: var(--font-size-h2-mobile);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  font-family: var(--font-display);
  text-align: center;
}

@media (min-width: 768px) {
  .thank-next-section h2 {
    font-size: var(--font-size-h2-tablet);
  }
}

@media (min-width: 1024px) {
  .thank-next-section h2 {
    font-size: var(--font-size-h2-desktop);
  }
}

/* ============================================
   THANK YOU STEPS
   ============================================ */

.thank-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .thank-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
}

@media (min-width: 1024px) {
  .thank-steps {
    gap: var(--spacing-lg);
  }
}

.thank-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-light);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .thank-step {
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
  }
}

@media (min-width: 1024px) {
  .thank-step {
    padding: var(--spacing-lg);
  }
}

.thank-step:hover {
  background-color: #f1f5f9;
  transform: translateY(-4px);
}

.thank-step-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .thank-step-icon {
    width: 70px;
    height: 70px;
  }
}

.thank-step-icon i {
  font-size: var(--icon-lg);
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .thank-step-icon i {
    font-size: var(--icon-xl);
  }
}

.thank-step h3 {
  font-size: var(--font-size-h4-mobile);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .thank-step h3 {
    font-size: var(--font-size-h4-tablet);
  }
}

@media (min-width: 1024px) {
  .thank-step h3 {
    font-size: var(--font-size-h4-desktop);
  }
}

.thank-step p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: var(--font-size-body-mobile);
}

@media (min-width: 768px) {
  .thank-step p {
    font-size: var(--font-size-body-tablet);
  }
}

@media (min-width: 1024px) {
  .thank-step p {
    font-size: var(--font-size-body-desktop);
  }
}

/* ============================================
   THANK YOU CTA
   ============================================ */

.thank-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

@media (min-width: 768px) {
  .thank-cta {
    padding: var(--spacing-2xl) 0;
    gap: var(--spacing-xl);
  }
}

.thank-cta-text {
  font-size: var(--font-size-h4-mobile);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
}

@media (min-width: 768px) {
  .thank-cta-text {
    font-size: var(--font-size-h4-tablet);
  }
}

@media (min-width: 1024px) {
  .thank-cta-text {
    font-size: var(--font-size-h4-desktop);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-body-mobile);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

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

@media (min-width: 1024px) {
  .btn {
    font-size: var(--font-size-body-desktop);
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

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

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.thank-steps {
  animation: slideUp 0.6s ease-out 0.3s both;
}

.thank-cta {
  animation: slideUp 0.6s ease-out 0.5s both;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus,
button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* 404 Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

  :root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-secondary: #10b981;
    --color-accent: #f59e0b;
    --color-bg-dark: #0f172a;
    --color-bg-light: #f8fafc;
    --color-bg-card: #ffffff;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-light: #ffffff;
    --color-border: #e2e8f0;
    --color-error: #ef4444;
    --color-success: #10b981;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-size-h1-mobile: 2.25rem;
    --font-size-h1-tablet: 2.75rem;
    --font-size-h1-desktop: 3.75rem;
    --font-size-h2-mobile: 1.875rem;
    --font-size-h2-tablet: 2.25rem;
    --font-size-h2-desktop: 3rem;
    --font-size-h3-mobile: 1.5rem;
    --font-size-h3-tablet: 1.75rem;
    --font-size-h3-desktop: 2.25rem;
    --font-size-h4-mobile: 1.25rem;
    --font-size-h4-tablet: 1.375rem;
    --font-size-h4-desktop: 1.875rem;
    --font-size-body-mobile: 0.875rem;
    --font-size-body-tablet: 0.9375rem;
    --font-size-body-desktop: 1rem;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --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);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
    --icon-sm: 1.25rem;
    --icon-md: 1.5rem;
    --icon-lg: 2rem;
    --icon-xl: 3rem;
    --icon-2xl: 4rem;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .main {
    overflow: hidden;
  }

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

  @media (min-width: 768px) {
    .container {
      padding: 0 var(--spacing-lg);
    }
  }

  /* ==================== Error Hero Section ==================== */
  .error-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2a4a 100%);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  @media (min-width: 768px) {
    .error-hero {
      padding: var(--spacing-3xl) 0;
    }
  }

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

  .error-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .error-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
  }

  @media (min-width: 768px) {
    .error-hero-content {
      flex-direction: row;
      gap: var(--spacing-2xl);
      align-items: center;
    }
  }

  /* ==================== Error Illustration ==================== */
  .error-illustration {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media (min-width: 768px) {
    .error-illustration {
      flex: 0 0 40%;
    }
  }

  .illustration-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media (min-width: 768px) {
    .illustration-container {
      width: 350px;
      height: 350px;
    }
  }

  .error-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
  }

  @keyframes rotate-slow {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .error-code-display {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1;
    text-align: center;
    z-index: 2;
    position: relative;
  }

  @media (min-width: 768px) {
    .error-code-display {
      font-size: 10rem;
    }
  }

  .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: var(--icon-lg);
    animation: float 3s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .floating-element {
      width: 70px;
      height: 70px;
      font-size: var(--icon-xl);
    }
  }

  .floating-element.element-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
  }

  .floating-element.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
  }

  .floating-element.element-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
  }

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

  /* ==================== Error Content ==================== */
  .error-content {
    flex: 0 0 100%;
    text-align: center;
  }

  @media (min-width: 768px) {
    .error-content {
      flex: 0 0 60%;
      text-align: left;
    }
  }

  .error-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h2-mobile);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: var(--font-size-h2-tablet);
    }
  }

  @media (min-width: 1024px) {
    .error-title {
      font-size: var(--font-size-h2-desktop);
    }
  }

  .error-subtitle {
    font-size: var(--font-size-h4-mobile);
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: var(--font-size-h4-tablet);
    }
  }

  @media (min-width: 1024px) {
    .error-subtitle {
      font-size: var(--font-size-h4-desktop);
    }
  }

  .error-description {
    font-size: var(--font-size-body-mobile);
    color: #cbd5e1;
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
  }

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

  @media (min-width: 1024px) {
    .error-description {
      font-size: var(--font-size-body-desktop);
    }
  }

  /* ==================== Error Suggestions Section ==================== */
  .error-suggestions {
    background-color: var(--color-bg-light);
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-suggestions {
      padding: var(--spacing-3xl) 0;
    }
  }

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

  .error-suggestions-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
  }

  .suggestions-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h2-mobile);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
  }

  @media (min-width: 768px) {
    .suggestions-title {
      font-size: var(--font-size-h2-tablet);
    }
  }

  @media (min-width: 1024px) {
    .suggestions-title {
      font-size: var(--font-size-h2-desktop);
      margin-bottom: var(--spacing-lg);
    }
  }

  /* ==================== Suggestions Grid ==================== */
  .suggestions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }

  @media (min-width: 768px) {
    .suggestions-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-lg);
      margin-bottom: var(--spacing-2xl);
    }
  }

  @media (min-width: 1024px) {
    .suggestions-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: var(--spacing-lg);
    }
  }

  .suggestion-card {
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .suggestion-card {
      padding: var(--spacing-lg);
      gap: var(--spacing-lg);
    }
  }

  @media (min-width: 1024px) {
    .suggestion-card {
      padding: var(--spacing-xl);
    }
  }

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

  .suggestion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--icon-lg);
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .suggestion-icon {
      width: 70px;
      height: 70px;
      font-size: var(--icon-xl);
    }
  }

  .suggestion-heading {
    font-size: var(--font-size-h4-mobile);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
  }

  @media (min-width: 768px) {
    .suggestion-heading {
      font-size: var(--font-size-h4-tablet);
    }
  }

  @media (min-width: 1024px) {
    .suggestion-heading {
      font-size: var(--font-size-h4-desktop);
    }
  }

  .suggestion-text {
    font-size: var(--font-size-body-mobile);
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .suggestion-text {
      font-size: var(--font-size-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .suggestion-text {
      font-size: var(--font-size-body-desktop);
    }
  }

  /* ==================== Error CTA ==================== */
  .error-cta {
    display: flex;
    justify-content: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-body-mobile);
    font-weight: var(--font-weight-semibold);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
  }

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

  @media (min-width: 1024px) {
    .btn {
      font-size: var(--font-size-body-desktop);
    }
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
  }

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

  /* ==================== Error Theme Section ==================== */
  .error-theme {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2a4a 100%);
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-theme {
      padding: var(--spacing-3xl) 0;
    }
  }

  @media (min-width: 1024px) {
    .error-theme {
      padding: 5rem 0;
    }
  }

  .error-theme::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .error-theme-content {
    position: relative;
    z-index: 1;
  }

  .theme-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
  }

  @media (min-width: 768px) {
    .theme-box {
      padding: var(--spacing-2xl);
    }
  }

  @media (min-width: 1024px) {
    .theme-box {
      padding: var(--spacing-3xl);
    }
  }

  .theme-title {
    font-family: var(--font-display);
    font-size: var(--font-size-h3-mobile);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
  }

  @media (min-width: 768px) {
    .theme-title {
      font-size: var(--font-size-h3-tablet);
    }
  }

  @media (min-width: 1024px) {
    .theme-title {
      font-size: var(--font-size-h3-desktop);
      margin-bottom: var(--spacing-lg);
    }
  }

  .theme-description {
    font-size: var(--font-size-body-mobile);
    color: #cbd5e1;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .theme-description {
      font-size: var(--font-size-body-tablet);
      margin-bottom: var(--spacing-xl);
    }
  }

  @media (min-width: 1024px) {
    .theme-description {
      font-size: var(--font-size-body-desktop);
    }
  }

  .theme-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }

  @media (min-width: 768px) {
    .theme-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-lg);
    }
  }

  @media (min-width: 1024px) {
    .theme-features {
      gap: var(--spacing-xl);
    }
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: var(--font-size-body-mobile);
    color: var(--color-success);
  }

  @media (min-width: 768px) {
    .feature-item {
      flex-direction: column;
      text-align: center;
      font-size: var(--font-size-body-tablet);
    }
  }

  @media (min-width: 1024px) {
    .feature-item {
      font-size: var(--font-size-body-desktop);
    }
  }

  .feature-item i {
    font-size: var(--icon-lg);
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .feature-item i {
      font-size: var(--icon-xl);
    }
  }

  /* ==================== Accessibility ==================== */
  @media (prefers-reduced-motion: reduce) {
    .floating-element,
    .error-decoration,
    .suggestion-card,
    .btn {
      animation: none !important;
      transition: none !important;
    }
  }

  /* ==================== Tablet & Mobile Optimization ==================== */
  @media (max-width: 767px) {
    .error-hero-content {
      gap: var(--spacing-xl);
    }

    .illustration-container {
      width: 240px;
      height: 240px;
    }

    .error-code-display {
      font-size: 6rem;
    }

    .floating-element {
      width: 50px;
      height: 50px;
      font-size: var(--icon-md);
    }
  }