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

:root {
  
  --color-primary: #0066cc;
  --color-primary-dark: #0052a3;
  --color-primary-light: #e6f0ff;
  
  
  --color-secondary: #ff6b35;
  --color-accent: #00d4aa;
  
  
  --color-bg-white: #ffffff;
  --color-bg-light: #f5f7fa;
  --color-bg-dark: #0a0e27;
  --color-bg-navy: #1a2847;
  
  
  --color-text-dark: #1a1a1a;
  --color-text-light: #ffffff;
  --color-text-gray: #666666;
  --color-text-light-gray: #999999;
  
  
  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;
  
  
  --size-h1: 3.75rem;
  --size-h2: 3rem;
  --size-h3: 2.25rem;
  --size-h4: 1.875rem;
  --size-h5: 1.5rem;
  --size-h6: 1.25rem;
  --size-body: 1rem;
  --size-small: 0.875rem;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

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

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

p {
  font-size: var(--size-body);
  line-height: 1.7;
}

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

ul, ol {
  list-style: none;
}

li {
  font-size: var(--size-body);
}

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

section {
  overflow: hidden;
}

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

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

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

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

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

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

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

.btn-light {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

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

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
}

.btn-accent:hover {
  background-color: #00c99f;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

.form-group label {
  font-weight: 600;
  font-size: var(--size-small);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--size-body);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

.form-submit-btn {
  padding: 1rem 2rem;
  font-size: var(--size-body);
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
}

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

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

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

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

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

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

.card-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.card-title {
  font-size: var(--size-h6);
  color: var(--color-text-dark);
  margin: 0;
}

.card-description {
  font-size: var(--size-small);
  color: var(--color-text-gray);
  line-height: 1.6;
}

.card-footer {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

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

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

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

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

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

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

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

.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-secondary {
  background-color: #ffe6f0;
  color: var(--color-secondary);
}

.badge-success {
  background-color: #e6f7f3;
  color: var(--color-accent);
}

i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-sm {
  font-size: 1rem;
}

.icon-md {
  font-size: 1.5rem;
}

.icon-lg {
  font-size: 2rem;
}

.icon-xl {
  font-size: 2.5rem;
}

.icon-2xl {
  font-size: 3rem;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin: var(--space-lg) 0;
}

.divider-light {
  background-color: var(--color-border-light);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  margin: 0 var(--space-xs);
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  margin: var(--space-md) 0;
}

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

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

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

.text-muted {
  color: var(--color-text-light-gray);
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

.text-white {
  color: var(--color-text-light);
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semibold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

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

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

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  h5 {
    font-size: 1.125rem;
  }
  
  h6 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  h3 {
    font-size: 1.875rem;
  }
  
  h4 {
    font-size: 1.5rem;
  }
  
  h5 {
    font-size: 1.25rem;
  }
  
  h6 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 var(--space-md);
  }
}

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

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-sm);
  text-decoration: none;
  border-radius: var(--radius-md);
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

.header-collab-forge {
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 768px) {
  .header-collab-forge-container {
    padding: 1rem 2rem;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .header-collab-forge-container {
    padding: 1.5rem 2rem;
    gap: 3rem;
  }
}

.header-collab-forge-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-collab-forge-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  transition: color var(--transition-base);
}

.header-collab-forge-brand:hover {
  color: var(--color-primary-dark);
}

.header-collab-forge-brand i {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .header-collab-forge-brand {
    font-size: 1.5rem;
  }

  .header-collab-forge-brand i {
    font-size: 1.75rem;
  }
}

.header-collab-forge-desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1024px) {
  .header-collab-forge-desktop-nav {
    display: flex;
    gap: 2.5rem;
  }
}

.header-collab-forge-nav-link {
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-base), 
              border-bottom var(--transition-base);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  font-family: var(--font-primary);
}

.header-collab-forge-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-collab-forge-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

.header-collab-forge-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-primary);
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-collab-forge-cta-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-collab-forge-cta-button:focus-visible {
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .header-collab-forge-cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

.header-collab-forge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: color var(--transition-base),
              transform var(--transition-base);
  flex-shrink: 0;
}

.header-collab-forge-mobile-toggle:hover {
  color: var(--color-primary-dark);
  transform: scale(1.1);
}

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

@media (min-width: 1024px) {
  .header-collab-forge-mobile-toggle {
    display: none;
  }
}

.header-collab-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-white);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity var(--transition-base),
              visibility var(--transition-base),
              transform var(--transition-base);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.header-collab-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border-light);
  flex-shrink: 0;
}

.header-collab-forge-mobile-header span {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-family: var(--font-display);
}

.header-collab-forge-mobile-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-dark);
  font-size: 1.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base),
              transform var(--transition-base);
  padding: 0;
}

.header-collab-forge-mobile-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

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

.header-collab-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1;
}

.header-collab-forge-mobile-link {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border-light);
  transition: background-color var(--transition-base),
              color var(--transition-base);
  font-family: var(--font-primary);
}

.header-collab-forge-mobile-link:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

.header-collab-forge-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.header-collab-forge-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
  display: block;
  font-family: var(--font-primary);
}

.header-collab-forge-mobile-cta:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-collab-forge-mobile-cta:focus-visible {
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .header-collab-forge-mobile-menu {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header-collab-forge-desktop-nav {
    display: none !important;
  }
}

    

.teamwork-hub {
  width: 100%;
}

.teamwork-hub .hero-section {
  background-color: #0a0e27;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.teamwork-hub .hero-section h1 {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 800;
}

.teamwork-hub .hero-section > .container > .hero-content > .hero-text > p {
  color: #d0d8e8;
  font-size: 1rem;
  line-height: 1.7;
}

.teamwork-hub .hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.teamwork-hub .hero-image {
  flex: 1;
  width: 100%;
}

.teamwork-hub .hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

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

  .teamwork-hub .hero-content {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .teamwork-hub .hero-section h1 {
    font-size: 3rem;
  }

  .teamwork-hub .hero-ctas {
    flex-direction: row;
  }

  .teamwork-hub .hero-text {
    flex: 1;
  }

  .teamwork-hub .hero-image {
    flex: 1;
  }
}

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

  .teamwork-hub .hero-section h1 {
    font-size: 3.5rem;
  }
}

.teamwork-hub .featured-posts-section {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

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

.teamwork-hub .section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.teamwork-hub .featured-posts-section h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.teamwork-hub .featured-posts-section > .container > .featured-posts-content > .section-header > p {
  color: #666666;
  font-size: 1rem;
}

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

.teamwork-hub .post-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;
}

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

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

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

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

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

.teamwork-hub .post-card-content > p {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.teamwork-hub .btn-small {
  align-self: flex-start;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.teamwork-hub .posts-footer {
  text-align: center;
  margin-top: 1rem;
}

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

  .teamwork-hub .featured-posts-section h2 {
    font-size: 2.25rem;
  }

  .teamwork-hub .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .teamwork-hub .post-image-wrapper {
    height: 250px;
  }

  .teamwork-hub .post-card-content {
    padding: 2rem;
  }

  .teamwork-hub .post-card-content h3 {
    font-size: 1.5rem;
  }
}

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

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

  .teamwork-hub .post-image-wrapper {
    height: 280px;
  }
}

.teamwork-hub .why-teamwork-section {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

.teamwork-hub .why-teamwork-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.teamwork-hub .why-teamwork-section h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
}

.teamwork-hub .why-teamwork-section > .container > .why-teamwork-content > .section-header > p {
  color: #666666;
}

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

.teamwork-hub .benefit-card {
  background-color: #f5f7fa;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  border-left: 4px solid var(--color-primary);
}

.teamwork-hub .benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.teamwork-hub .benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

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

.teamwork-hub .benefit-card > p {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

  .teamwork-hub .why-teamwork-section h2 {
    font-size: 2.25rem;
  }

  .teamwork-hub .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .teamwork-hub .benefit-card {
    padding: 2rem;
  }

  .teamwork-hub .benefit-card h3 {
    font-size: 1.5rem;
  }
}

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

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

.teamwork-hub .how-we-help-section {
  background-color: #0a0e27;
  padding: 3rem 0;
  overflow: hidden;
}

.teamwork-hub .how-we-help-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.teamwork-hub .how-we-help-section h2 {
  color: #ffffff;
  font-size: 1.875rem;
}

.teamwork-hub .how-we-help-section > .container > .how-we-help-content > .section-header > p {
  color: #d0d8e8;
}

.teamwork-hub .steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.teamwork-hub .step {
  background-color: #1a2847;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.teamwork-hub .step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-display);
}

.teamwork-hub .step h3 {
  color: #ffffff;
  font-size: 1.25rem;
}

.teamwork-hub .step > p {
  color: #d0d8e8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.teamwork-hub .step-divider {
  display: none;
  color: var(--color-accent);
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5rem 0;
}

.teamwork-hub .how-we-help-cta {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.teamwork-hub .how-we-help-cta > p {
  color: #ffffff;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .teamwork-hub .how-we-help-section {
    padding: 5rem 0;
  }

  .teamwork-hub .how-we-help-section h2 {
    font-size: 2.25rem;
  }

  .teamwork-hub .steps-container {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .teamwork-hub .step {
    flex: 1;
    padding: 2rem;
  }

  .teamwork-hub .step-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
  }
}

@media (min-width: 1024px) {
  .teamwork-hub .how-we-help-section {
    padding: 6rem 0;
  }
}

.teamwork-hub .statistics-section {
  background-color: #e6f0ff;
  padding: 3rem 0;
  overflow: hidden;
}

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

.teamwork-hub .statistics-section h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
}

.teamwork-hub .statistics-section > .container > .statistics-content > .section-header > p {
  color: #666666;
}

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

.teamwork-hub .stat-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-top: 4px solid var(--color-primary);
}

.teamwork-hub .stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.teamwork-hub .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

.teamwork-hub .stat-card > p {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

  .teamwork-hub .statistics-section h2 {
    font-size: 2.25rem;
  }

  .teamwork-hub .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .teamwork-hub .stat-number {
    font-size: 3rem;
  }
}

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

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

.teamwork-hub .testimonials-section {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

.teamwork-hub .testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.teamwork-hub .testimonials-section h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
}

.teamwork-hub .testimonials-section > .container > .testimonials-content > .section-header > p {
  color: #666666;
}

.teamwork-hub .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.teamwork-hub .testimonial-card {
  background-color: #f5f7fa;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 4px solid var(--color-accent);
}

.teamwork-hub .testimonial-header {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.teamwork-hub .stars {
  display: flex;
  gap: 0.25rem;
  color: #ffc107;
  font-size: 0.875rem;
}

.teamwork-hub .testimonial-text {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
}

.teamwork-hub .testimonial-author {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.teamwork-hub .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.teamwork-hub .testimonial-author strong {
  color: #1a1a1a;
  font-size: 0.875rem;
  display: block;
}

.teamwork-hub .testimonial-author span {
  color: #999999;
  font-size: 0.75rem;
  display: block;
}

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

  .teamwork-hub .testimonials-section h2 {
    font-size: 2.25rem;
  }

  .teamwork-hub .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .teamwork-hub .testimonial-card {
    padding: 2rem;
  }
}

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

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

.teamwork-hub .core-principles-section {
  background-color: #0a0e27;
  padding: 3rem 0;
  overflow: hidden;
}

.teamwork-hub .core-principles-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.teamwork-hub .core-principles-section h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.teamwork-hub .core-principles-section > .container > .core-principles-content > .principles-text > p {
  color: #d0d8e8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

.teamwork-hub .principles-list li {
  color: #d0d8e8;
  font-size: 0.875rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.teamwork-hub .principles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1rem;
}

.teamwork-hub .principles-list strong {
  color: #ffffff;
}

.teamwork-hub .principles-image {
  width: 100%;
}

.teamwork-hub .principles-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

  .teamwork-hub .core-principles-content {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .teamwork-hub .core-principles-section h2 {
    font-size: 2.25rem;
  }

  .teamwork-hub .principles-text {
    flex: 1;
  }

  .teamwork-hub .principles-image {
    flex: 1;
  }
}

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

.teamwork-hub .contact-section {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

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

.teamwork-hub .contact-header {
  text-align: center;
}

.teamwork-hub .contact-section h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.teamwork-hub .contact-section > .container > .contact-content > .contact-header > p {
  color: #666666;
  font-size: 1rem;
}

.teamwork-hub .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.teamwork-hub .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.teamwork-hub .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.teamwork-hub .contact-form label {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.875rem;
}

.teamwork-hub .contact-form input,
.teamwork-hub .contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: #1a1a1a;
}

.teamwork-hub .contact-form input:focus,
.teamwork-hub .contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.teamwork-hub .contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.teamwork-hub .form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.teamwork-hub .form-submit-btn {
  padding: 1rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1rem;
}

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

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

.teamwork-hub .form-privacy {
  color: #999999;
  font-size: 0.75rem;
  text-align: center;
}

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

.teamwork-hub .form-privacy a:hover {
  text-decoration: none;
}

.teamwork-hub .contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.teamwork-hub .contact-benefits h3 {
  color: #1a1a1a;
  font-size: 1.125rem;
}

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

.teamwork-hub .benefits-list li {
  color: #666666;
  font-size: 0.875rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}

.teamwork-hub .benefits-list i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

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

  .teamwork-hub .contact-section h2 {
    font-size: 2.25rem;
  }

  .teamwork-hub .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
  }

  .teamwork-hub .contact-form {
    gap: 1.5rem;
  }

  .teamwork-hub .contact-form input,
  .teamwork-hub .contact-form textarea {
    font-size: 1rem;
    padding: 1rem;
  }
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  padding: 1rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 300ms ease-in-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-banner p {
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.cookie-accept,
.cookie-decline {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

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

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

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

.cookie-decline:hover {
  border-color: #ffffff;
  color: #ffffff;
}

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

  .cookie-banner p {
    flex: 1;
    text-align: left;
    margin: 0;
  }

  .cookie-actions {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem;
  }

  .teamwork-hub h1 {
    font-size: 1.75rem;
  }

  .teamwork-hub h2 {
    font-size: 1.5rem;
  }

  .teamwork-hub h3 {
    font-size: 1.125rem;
  }

  .teamwork-hub p {
    font-size: 0.875rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
  }
}

    

.footer {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.footer-content {
  display: block;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 2rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 3rem;
  }
}

.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: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.footer-about h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .footer-about h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .footer-about h3 {
    font-size: 2rem;
  }
}

.footer-about p {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  line-height: 1.6;
  color: #c5cad1;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-about p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}

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

@media (min-width: 768px) {
  .footer-nav {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.footer-nav h4,
.footer-legal h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

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

.footer-nav-list,
.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .footer-nav-list,
  .footer-legal-list {
    gap: 1rem;
  }
}

.footer-link {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: #b8bcc3;
  text-decoration: none;
  transition: color var(--transition-base), text-decoration var(--transition-base);
  display: inline-block;
  position: relative;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 0.9375rem;
  }
}

.footer-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

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

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

@media (min-width: 768px) {
  .footer-legal {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.footer-copyright {
  display: block;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

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

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: #8a8f97;
  margin: 0;
  text-align: center;
  letter-spacing: 0.3px;
}

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

@media (max-width: 319px) {
  .footer {
    padding: 2rem 0;
  }

  .footer-about h3,
  .footer-nav h4,
  .footer-legal h4 {
    font-size: 1.125rem;
  }

  .footer-about p,
  .footer-link {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-link {
    transition: none;
  }
}
    

.category-page-teamwork-collaboration .category-hero-teamwork-collaboration {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

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

.category-page-teamwork-collaboration .hero-text-teamwork-collaboration {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.category-page-teamwork-collaboration .hero-title-teamwork-collaboration {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.category-page-teamwork-collaboration .hero-description-teamwork-collaboration {
  font-size: 0.9375rem;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.category-page-teamwork-collaboration .hero-accent-teamwork-collaboration {
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  margin: 0 auto;
}

.category-page-teamwork-collaboration .hero-image-teamwork-collaboration {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

  .category-page-teamwork-collaboration .hero-content-teamwork-collaboration {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .category-page-teamwork-collaboration .hero-text-teamwork-collaboration {
    flex: 1;
    text-align: left;
    align-items: flex-start;
  }

  .category-page-teamwork-collaboration .hero-title-teamwork-collaboration {
    font-size: 2.5rem;
  }

  .category-page-teamwork-collaboration .hero-description-teamwork-collaboration {
    font-size: 1rem;
    max-width: 100%;
  }

  .category-page-teamwork-collaboration .hero-accent-teamwork-collaboration {
    margin: 0;
  }

  .category-page-teamwork-collaboration .hero-image-teamwork-collaboration {
    flex: 1;
    max-height: 350px;
  }
}

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

  .category-page-teamwork-collaboration .hero-title-teamwork-collaboration {
    font-size: 3rem;
  }
}

.category-page-teamwork-collaboration .posts-grid-section-teamwork-collaboration {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

.category-page-teamwork-collaboration .posts-grid-teamwork-collaboration {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

  .category-page-teamwork-collaboration .posts-grid-teamwork-collaboration {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

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

.category-page-teamwork-collaboration .card-teamwork-collaboration {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  overflow: hidden;
}

.category-page-teamwork-collaboration .card-teamwork-collaboration:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.category-page-teamwork-collaboration .card-image-teamwork-collaboration {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
}

.category-page-teamwork-collaboration .card-title-teamwork-collaboration {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin: 0;
}

.category-page-teamwork-collaboration .card-description-teamwork-collaboration {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

.category-page-teamwork-collaboration .card-link-teamwork-collaboration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  text-decoration: none;
  margin-top: 0.5rem;
}

.category-page-teamwork-collaboration .card-link-teamwork-collaboration:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.category-page-teamwork-collaboration .card-link-teamwork-collaboration::after {
  content: "";
  transition: transform var(--transition-base);
}

.category-page-teamwork-collaboration .card-link-teamwork-collaboration:hover::after {
  transform: translateX(3px);
}

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

  .category-page-teamwork-collaboration .card-title-teamwork-collaboration {
    font-size: 1.25rem;
  }

  .category-page-teamwork-collaboration .card-description-teamwork-collaboration {
    font-size: 0.9375rem;
  }
}

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

  .category-page-teamwork-collaboration .card-title-teamwork-collaboration {
    font-size: 1.375rem;
  }
}

.category-page-teamwork-collaboration .additional-section-1-teamwork-collaboration {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.category-page-teamwork-collaboration .section-content-teamwork-collaboration {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.category-page-teamwork-collaboration .section-title-teamwork-collaboration {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.category-page-teamwork-collaboration .section-intro-teamwork-collaboration {
  font-size: 0.9375rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.category-page-teamwork-collaboration .principles-grid-teamwork-collaboration {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.category-page-teamwork-collaboration .principle-item-teamwork-collaboration {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.category-page-teamwork-collaboration .principle-item-teamwork-collaboration:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-page-teamwork-collaboration .principle-icon-teamwork-collaboration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.category-page-teamwork-collaboration .principle-icon-teamwork-collaboration i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.category-page-teamwork-collaboration .principle-title-teamwork-collaboration {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
}

.category-page-teamwork-collaboration .principle-text-teamwork-collaboration {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .category-page-teamwork-collaboration .additional-section-1-teamwork-collaboration {
    padding: 5rem 0;
  }

  .category-page-teamwork-collaboration .principles-grid-teamwork-collaboration {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .category-page-teamwork-collaboration .section-title-teamwork-collaboration {
    font-size: 2.25rem;
  }

  .category-page-teamwork-collaboration .principle-item-teamwork-collaboration {
    padding: 2rem;
  }

  .category-page-teamwork-collaboration .principle-title-teamwork-collaboration {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .category-page-teamwork-collaboration .additional-section-1-teamwork-collaboration {
    padding: 6rem 0;
  }

  .category-page-teamwork-collaboration .principles-grid-teamwork-collaboration {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-page-teamwork-collaboration .section-title-teamwork-collaboration {
    font-size: 2.5rem;
  }
}

.category-page-teamwork-collaboration .additional-section-2-teamwork-collaboration {
  background-color: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

.category-page-teamwork-collaboration .challenges-list-teamwork-collaboration {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.category-page-teamwork-collaboration .challenge-item-teamwork-collaboration {
  padding: 1.5rem;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.category-page-teamwork-collaboration .challenge-item-teamwork-collaboration:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.category-page-teamwork-collaboration .challenge-title-teamwork-collaboration {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.category-page-teamwork-collaboration .challenge-text-teamwork-collaboration {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .category-page-teamwork-collaboration .additional-section-2-teamwork-collaboration {
    padding: 5rem 0;
  }

  .category-page-teamwork-collaboration .challenges-list-teamwork-collaboration {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .category-page-teamwork-collaboration .challenge-item-teamwork-collaboration {
    padding: 2rem;
  }

  .category-page-teamwork-collaboration .challenge-title-teamwork-collaboration {
    font-size: 1.25rem;
  }

  .category-page-teamwork-collaboration .challenge-text-teamwork-collaboration {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .category-page-teamwork-collaboration .additional-section-2-teamwork-collaboration {
    padding: 6rem 0;
  }

  .category-page-teamwork-collaboration .challenges-list-teamwork-collaboration {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .category-page-teamwork-collaboration .hero-title-teamwork-collaboration {
    font-size: 1.875rem;
  }

  .category-page-teamwork-collaboration .section-title-teamwork-collaboration {
    font-size: 1.5rem;
  }

  .category-page-teamwork-collaboration .card-title-teamwork-collaboration {
    font-size: 1rem;
  }
}

.category-page-teamwork-collaboration .card-teamwork-collaboration {
  animation: slideUp 0.6s ease-in-out;
}

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

.category-page-teamwork-collaboration .card-link-teamwork-collaboration:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.category-page-teamwork-collaboration *:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.post-effective-team-communication .effective-team-communication-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.post-effective-team-communication .effective-team-communication-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-effective-team-communication .effective-team-communication-breadcrumb-link {
  color: var(--color-primary);
  font-size: var(--size-small);
  font-weight: 500;
  transition: all var(--transition-base);
}

.post-effective-team-communication .effective-team-communication-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-effective-team-communication .effective-team-communication-breadcrumb-separator {
  color: var(--color-text-gray);
  font-size: var(--size-small);
}

.post-effective-team-communication .effective-team-communication-breadcrumb-current {
  color: var(--color-text-dark);
  font-size: var(--size-small);
  font-weight: 600;
}

.post-effective-team-communication .effective-team-communication-hero {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.post-effective-team-communication .effective-team-communication-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-hero-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.post-effective-team-communication .effective-team-communication-hero-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-hero-title {
    font-size: 3.25rem;
  }
}

.post-effective-team-communication .effective-team-communication-lead {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-lead {
    font-size: 1.125rem;
  }
}

.post-effective-team-communication .effective-team-communication-hero-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-effective-team-communication .effective-team-communication-read-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--size-small);
  color: var(--color-text-light-gray);
}

.post-effective-team-communication .effective-team-communication-read-time i {
  color: var(--color-primary);
}

.post-effective-team-communication .effective-team-communication-hero-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: slideInRight var(--transition-base) ease-in-out;
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-hero-image {
    width: 50%;
    flex-shrink: 0;
  }
}

.post-effective-team-communication .effective-team-communication-intro {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-intro {
    padding: 6rem 0;
  }
}

.post-effective-team-communication .effective-team-communication-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-effective-team-communication .effective-team-communication-intro-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-intro-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-intro-title {
    font-size: 2.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-intro-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-intro-text {
    font-size: 1.0625rem;
  }
}

.post-effective-team-communication .effective-team-communication-intro-highlight {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-intro-highlight {
    padding: 2rem;
  }
}

.post-effective-team-communication .effective-team-communication-intro-highlight i {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-effective-team-communication .effective-team-communication-intro-highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}

.post-effective-team-communication .effective-team-communication-channels {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-channels {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-channels {
    padding: 6rem 0;
  }
}

.post-effective-team-communication .effective-team-communication-channels-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-effective-team-communication .effective-team-communication-channels-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-effective-team-communication .effective-team-communication-channels-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-channels-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-channels-title {
    font-size: 2.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-channels-desc {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-channels-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 1rem 0 0 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-channels-subtitle {
    font-size: 1.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-channels-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.post-effective-team-communication .effective-team-communication-channels-list li {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.post-effective-team-communication .effective-team-communication-channels-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.25rem;
}

.post-effective-team-communication .effective-team-communication-channels-tip {
  background-color: #f0f9ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin: 0.5rem 0 0 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-channels-tip {
    padding: 1.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-listening {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-listening {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-listening {
    padding: 6rem 0;
  }
}

.post-effective-team-communication .effective-team-communication-listening-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-effective-team-communication .effective-team-communication-listening-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-listening-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-listening-title {
    font-size: 2.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-listening-intro {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-listening-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-effective-team-communication .effective-team-communication-listening-card {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  text-align: center;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-listening-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

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

.post-effective-team-communication .effective-team-communication-listening-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.post-effective-team-communication .effective-team-communication-listening-card-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.post-effective-team-communication .effective-team-communication-listening-card-text {
  font-size: 0.9375rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-listening-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: slideUp var(--transition-base) ease-in-out;
}

.post-effective-team-communication .effective-team-communication-feedback {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-feedback {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-feedback {
    padding: 6rem 0;
  }
}

.post-effective-team-communication .effective-team-communication-feedback-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-effective-team-communication .effective-team-communication-feedback-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-feedback-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-feedback-title {
    font-size: 2.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-feedback-intro {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-feedback-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 1rem 0 0 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-feedback-subtitle {
    font-size: 1.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-feedback-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: step-counter;
}

.post-effective-team-communication .effective-team-communication-feedback-steps li {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  padding-left: 2.5rem;
  position: relative;
  counter-increment: step-counter;
}

.post-effective-team-communication .effective-team-communication-feedback-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.post-effective-team-communication .effective-team-communication-feedback-box {
  background-color: #fff5e6;
  border-left: 4px solid var(--color-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-feedback-box {
    padding: 2rem;
  }
}

.post-effective-team-communication .effective-team-communication-feedback-box-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.3;
}

.post-effective-team-communication .effective-team-communication-feedback-box-title i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.post-effective-team-communication .effective-team-communication-feedback-box-text {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-conflict {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-conflict {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-conflict {
    padding: 6rem 0;
  }
}

.post-effective-team-communication .effective-team-communication-conflict-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-effective-team-communication .effective-team-communication-conflict-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-conflict-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-conflict-title {
    font-size: 2.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-conflict-intro {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-conflict-prevention {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-effective-team-communication .effective-team-communication-conflict-prevention-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-conflict-prevention-title {
    font-size: 1.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-conflict-prevention-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-effective-team-communication .effective-team-communication-conflict-prevention-list li {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.post-effective-team-communication .effective-team-communication-conflict-prevention-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.post-effective-team-communication .effective-team-communication-conflict-resolution {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.post-effective-team-communication .effective-team-communication-conflict-resolution-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-conflict-resolution-title {
    font-size: 1.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-conflict-resolution-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-conflict-resolution-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: conflict-counter;
}

.post-effective-team-communication .effective-team-communication-conflict-resolution-steps li {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  padding-left: 2.5rem;
  position: relative;
  counter-increment: conflict-counter;
}

.post-effective-team-communication .effective-team-communication-conflict-resolution-steps li:before {
  content: counter(conflict-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.post-effective-team-communication .effective-team-communication-conclusion {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.post-effective-team-communication .effective-team-communication-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-effective-team-communication .effective-team-communication-conclusion-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-conclusion-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-conclusion-title {
    font-size: 2.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-conclusion-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

.post-effective-team-communication .effective-team-communication-summary {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-summary {
    padding: 2rem;
  }
}

.post-effective-team-communication .effective-team-communication-summary-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.post-effective-team-communication .effective-team-communication-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-effective-team-communication .effective-team-communication-summary-list li {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}

.post-effective-team-communication .effective-team-communication-summary-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.125rem;
}

.post-effective-team-communication .effective-team-communication-conclusion-closing {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 1rem 0 0 0;
  font-weight: 500;
}

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

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

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

.post-effective-team-communication .effective-team-communication-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-effective-team-communication .effective-team-communication-related-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-effective-team-communication .effective-team-communication-related-title {
    font-size: 2.5rem;
  }
}

.post-effective-team-communication .effective-team-communication-related-subtitle {
  font-size: 1rem;
  color: var(--color-text-gray);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.post-effective-team-communication .effective-team-communication-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.post-effective-team-communication .effective-team-communication-related-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-base);
}

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

.post-effective-team-communication .effective-team-communication-related-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.post-effective-team-communication .effective-team-communication-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-related-card-body {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-effective-team-communication .effective-team-communication-related-card-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-effective-team-communication .effective-team-communication-related-card-title {
    font-size: 1.25rem;
  }
}

.post-effective-team-communication .effective-team-communication-related-card-description {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.post-effective-team-communication .effective-team-communication-related-card-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  text-decoration: none;
  margin-top: 0.5rem;
}

.post-effective-team-communication .effective-team-communication-related-card-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-effective-team-communication .effective-team-communication-related-card-link i {
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .post-effective-team-communication .container {
    padding: 0 var(--space-md);
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs {
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs .container {
  padding: var(--space-md) var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs a,
.post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs span {
  font-size: var(--size-small);
  color: var(--color-text-gray);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumb-separator {
  margin: 0 var(--space-xs);
  color: var(--color-text-light-gray);
}

@media (max-width: 767px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs .container {
    padding: var(--space-sm) var(--space-md);
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs a,
  .post-team-goal-setting-strategy .team-goal-setting-strategy-breadcrumbs span {
    font-size: 0.75rem;
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero {
  background-color: var(--color-bg-white);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-read-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--size-small);
  color: var(--color-text-light-gray);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-read-time i {
  color: var(--color-primary);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero-image {
  display: none;
  width: 100%;
  height: auto;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero .container {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero-title {
    font-size: 2.75rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero-lead {
    font-size: 1.25rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero-image {
    display: block;
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero-title {
    font-size: 3.5rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-hero-lead {
    font-size: 1.375rem;
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-intro {
  background-color: var(--color-primary-light);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-intro-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-intro-title {
  font-size: 1.875rem;
  color: var(--color-primary-dark);
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-intro-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-intro {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-intro-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-intro {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-intro-content {
    max-width: 900px;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-intro-title {
    font-size: 2.5rem;
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart {
  background-color: var(--color-bg-white);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-description {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-item {
  padding: var(--space-md);
  background-color: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-label {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-item-text {
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-image {
  display: none;
  width: 100%;
  height: auto;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-smart-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-smart {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-smart-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-smart-title {
    font-size: 2.25rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-smart-image {
    display: block;
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-smart {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-smart-title {
    font-size: 2.5rem;
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-alignment {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-text {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-process-step {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-step-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 600;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-step-text {
  font-size: 0.9375rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-alignment {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-title {
    font-size: 2.25rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-process {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-alignment {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-title {
    font-size: 2.5rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-alignment-process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring {
  background-color: var(--color-bg-white);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-intro {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-primary);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-card-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 600;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-card-text {
  font-size: 0.9375rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-title {
    font-size: 2.25rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-title {
    font-size: 2.5rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-monitoring-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tips {
  background-color: var(--color-bg-light);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tips-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tips-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tip-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tip-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tip-heading {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 600;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-tip-text {
  font-size: 0.9375rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-tips {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-tips-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-tips {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-tips-title {
    font-size: 2.5rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-tip-item {
    grid-template-columns: 60px 1fr;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-tip-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-title {
  font-size: 1.875rem;
  color: var(--color-text-light);
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-text {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-key-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-point {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-point i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-closing {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
  margin-top: var(--space-lg);
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-conclusion-title {
    font-size: 2.5rem;
  }
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related {
  background-color: var(--color-bg-white);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin: 0;
  text-align: center;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-description {
  font-size: 1rem;
  color: var(--color-text-gray);
  margin: 0;
  text-align: center;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card:hover .team-goal-setting-strategy-related-card-image img {
  transform: scale(1.05);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-description {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-size: var(--size-small);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-sm);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-link:hover i {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-related {
    padding: var(--space-2xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-related-title {
    font-size: 2.25rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-related-card-content {
    padding: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-team-goal-setting-strategy .team-goal-setting-strategy-related {
    padding: var(--space-3xl) 0;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-related-title {
    font-size: 2.5rem;
  }

  .post-team-goal-setting-strategy .team-goal-setting-strategy-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-trust-psychological-safety {
  width: 100%;
}

.trust-psychological-safety-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.trust-psychological-safety-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.trust-psychological-safety-breadcrumbs a {
  font-size: var(--size-small);
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-base);
}

.trust-psychological-safety-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.trust-psychological-safety-breadcrumbs span {
  font-size: var(--size-small);
  color: var(--color-text-gray);
}

.trust-psychological-safety-breadcrumb-separator {
  color: var(--color-text-light-gray);
  margin: 0 var(--space-xs);
}

@media (max-width: 767px) {
  .trust-psychological-safety-breadcrumbs .container {
    font-size: 0.75rem;
  }
}

.trust-psychological-safety-hero {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.trust-psychological-safety-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-psychological-safety-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.trust-psychological-safety-lead {
  font-size: 1.125rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

.trust-psychological-safety-meta {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.trust-psychological-safety-read-time {
  font-size: var(--size-small);
  color: #ffffff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
}

@media (min-width: 768px) {
  .trust-psychological-safety-hero {
    padding: 5rem 0;
  }

  .trust-psychological-safety-hero-title {
    font-size: 2.75rem;
  }

  .trust-psychological-safety-lead {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .trust-psychological-safety-hero {
    padding: 6rem 0;
  }

  .trust-psychological-safety-hero-title {
    font-size: 3.5rem;
  }

  .trust-psychological-safety-lead {
    font-size: 1.375rem;
  }
}

.trust-psychological-safety-content-1 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

.trust-psychological-safety-content-1-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.trust-psychological-safety-text-block h2 {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-text-block p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-highlight-box {
  background-color: #f0f4ff;
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.trust-psychological-safety-highlight-box h4 {
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-psychological-safety-benefit-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
  color: #333333;
  font-size: 1rem;
}

.trust-psychological-safety-benefit-list li:before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-psychological-safety-content-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .trust-psychological-safety-content-1 {
    padding: 5rem 0;
  }

  .trust-psychological-safety-content-1-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }

  .trust-psychological-safety-text-block h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .trust-psychological-safety-content-1 {
    padding: 6rem 0;
  }

  .trust-psychological-safety-highlight-box {
    padding: 2.5rem;
  }
}

.trust-psychological-safety-content-2 {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

.trust-psychological-safety-content-2-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-psychological-safety-content-2 h2 {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-content-2 p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.trust-psychological-safety-column-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.trust-psychological-safety-column-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-psychological-safety-column-item h4 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.trust-psychological-safety-column-item i {
  font-size: 1.25rem;
}

.trust-psychological-safety-column-item p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .trust-psychological-safety-content-2 {
    padding: 5rem 0;
  }

  .trust-psychological-safety-content-2 h2 {
    font-size: 2.25rem;
  }

  .trust-psychological-safety-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .trust-psychological-safety-column-item {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .trust-psychological-safety-content-2 {
    padding: 6rem 0;
  }
}

.trust-psychological-safety-content-3 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

.trust-psychological-safety-content-3-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-psychological-safety-content-3 h2 {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-content-3 > div > p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.trust-psychological-safety-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-psychological-safety-step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #f5f7fa;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  transition: all var(--transition-base);
}

.trust-psychological-safety-step-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.trust-psychological-safety-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.trust-psychological-safety-step-content h4 {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-sm) 0;
}

.trust-psychological-safety-step-content p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .trust-psychological-safety-content-3 {
    padding: 5rem 0;
  }

  .trust-psychological-safety-content-3 h2 {
    font-size: 2.25rem;
  }

  .trust-psychological-safety-step-item {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .trust-psychological-safety-content-3 {
    padding: 6rem 0;
  }
}

.trust-psychological-safety-content-4 {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
  padding: 3rem 0;
  overflow: hidden;
}

.trust-psychological-safety-content-4-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-psychological-safety-content-4 h2 {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-content-4 > div > p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.trust-psychological-safety-barriers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-psychological-safety-barrier-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.trust-psychological-safety-barrier-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-psychological-safety-barrier-card h4 {
  font-size: 1.125rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.trust-psychological-safety-barrier-card i {
  font-size: 1.25rem;
}

.trust-psychological-safety-barrier-card p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.7;
  margin: 0;
}

.trust-psychological-safety-barrier-card strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .trust-psychological-safety-content-4 {
    padding: 5rem 0;
  }

  .trust-psychological-safety-content-4 h2 {
    font-size: 2.25rem;
  }

  .trust-psychological-safety-barriers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .trust-psychological-safety-barrier-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .trust-psychological-safety-content-4 {
    padding: 6rem 0;
  }
}

.trust-psychological-safety-content-5 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

.trust-psychological-safety-content-5-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-psychological-safety-content-5 h2 {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-content-5 p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  margin: 0 0 var(--space-md) 0;
}

.trust-psychological-safety-impact-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-lg);
}

.trust-psychological-safety-conclusion-box {
  background: linear-gradient(135deg, #e6f0ff 0%, #f0f4ff 100%);
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.trust-psychological-safety-conclusion-box h3 {
  font-size: 1.375rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
}

.trust-psychological-safety-conclusion-box p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.trust-psychological-safety-conclusion-box p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .trust-psychological-safety-content-5 {
    padding: 5rem 0;
  }

  .trust-psychological-safety-content-5 h2 {
    font-size: 2.25rem;
  }

  .trust-psychological-safety-conclusion-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .trust-psychological-safety-content-5 {
    padding: 6rem 0;
  }
}

.trust-psychological-safety-related {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

.trust-psychological-safety-related-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.trust-psychological-safety-related h2 {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-sm) 0;
}

.trust-psychological-safety-related-subtitle {
  font-size: 1rem;
  color: #666666;
  margin: 0;
}

.trust-psychological-safety-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-psychological-safety-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.trust-psychological-safety-card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #ecf0f1;
}

.trust-psychological-safety-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.trust-psychological-safety-related-card:hover .trust-psychological-safety-card-image {
  transform: scale(1.05);
}

.trust-psychological-safety-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.trust-psychological-safety-card-content h3 {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
}

.trust-psychological-safety-card-content p {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.trust-psychological-safety-card-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-base);
  margin-top: var(--space-sm);
  align-self: flex-start;
}

.trust-psychological-safety-card-link:hover {
  color: var(--color-primary-dark);
  gap: var(--space-sm);
}

.trust-psychological-safety-card-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-base);
}

.trust-psychological-safety-card-link:hover i {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .trust-psychological-safety-related {
    padding: 5rem 0;
  }

  .trust-psychological-safety-related h2 {
    font-size: 2.25rem;
  }

  .trust-psychological-safety-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .trust-psychological-safety-card-content {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .trust-psychological-safety-related {
    padding: 6rem 0;
  }

  .trust-psychological-safety-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .post-trust-psychological-safety {
    font-size: 0.9375rem;
  }

  .trust-psychological-safety-hero-title {
    line-height: 1.1;
  }

  .trust-psychological-safety-step-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .trust-psychological-safety-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

.post-leadership-team-support {
  background-color: var(--color-bg-white);
}

.post-leadership-team-support .leadership-team-support-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.post-leadership-team-support .leadership-team-support-breadcrumb-link {
  color: var(--color-primary);
  font-weight: 500;
  transition: all var(--transition-base);
}

.post-leadership-team-support .leadership-team-support-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-leadership-team-support .leadership-team-support-breadcrumb-separator {
  color: var(--color-text-light-gray);
  margin: 0 0.25rem;
}

.post-leadership-team-support .leadership-team-support-breadcrumb-current {
  color: var(--color-text-dark);
  font-weight: 600;
}

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-breadcrumbs {
    padding: 0.75rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-breadcrumbs .container {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

.post-leadership-team-support .leadership-team-support-hero {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #004499 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-leadership-team-support .leadership-team-support-hero-title {
  font-size: 2.5rem;
  color: var(--color-text-light);
  font-weight: 800;
  line-height: 1.2;
}

.post-leadership-team-support .leadership-team-support-lead {
  font-size: 1.125rem;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 700px;
}

.post-leadership-team-support .leadership-team-support-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.post-leadership-team-support .leadership-team-support-read-time {
  color: #d0d0d0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-hero {
    padding: 6rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-hero-title {
    font-size: 3.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-lead {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-hero {
    padding: 2.5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-hero-title {
    font-size: 1.875rem;
  }
  
  .post-leadership-team-support .leadership-team-support-lead {
    font-size: 1rem;
  }
}

.post-leadership-team-support .leadership-team-support-featured-image {
  background-color: var(--color-bg-white);
  padding: 2rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-featured-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-leadership-team-support .leadership-team-support-featured-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-featured-image {
    padding: 3rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-featured-img {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .post-leadership-team-support .leadership-team-support-featured-image {
    padding: 4rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-featured-img {
    height: 500px;
  }
}

.post-leadership-team-support .leadership-team-support-intro {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.post-leadership-team-support .leadership-team-support-intro-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.post-leadership-team-support .leadership-team-support-intro-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}

.post-leadership-team-support .leadership-team-support-highlight-box {
  background-color: #f0f4ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.post-leadership-team-support .leadership-team-support-highlight-box i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-leadership-team-support .leadership-team-support-highlight-box p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-intro {
    padding: 5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-intro-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-intro {
    padding: 2rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-intro-title {
    font-size: 1.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-intro-text {
    font-size: 0.9375rem;
  }
  
  .post-leadership-team-support .leadership-team-support-highlight-box {
    padding: 1rem;
    gap: 0.75rem;
  }
}

.post-leadership-team-support .leadership-team-support-principles {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-principles-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-leadership-team-support .leadership-team-support-principles-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.post-leadership-team-support .leadership-team-support-principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-leadership-team-support .leadership-team-support-principle-card {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.post-leadership-team-support .leadership-team-support-principle-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-leadership-team-support .leadership-team-support-principle-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f0ff;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.post-leadership-team-support .leadership-team-support-principle-name {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.post-leadership-team-support .leadership-team-support-principle-desc {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-principles {
    padding: 5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-principles-title {
    font-size: 2.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .post-leadership-team-support .leadership-team-support-principle-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .post-leadership-team-support .leadership-team-support-principles-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-principles {
    padding: 2rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-principles-title {
    font-size: 1.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-principle-card {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .post-leadership-team-support .leadership-team-support-principle-name {
    font-size: 1.1rem;
  }
  
  .post-leadership-team-support .leadership-team-support-principle-desc {
    font-size: 0.875rem;
  }
}

.post-leadership-team-support .leadership-team-support-implementation {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-implementation-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-leadership-team-support .leadership-team-support-implementation-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.post-leadership-team-support .leadership-team-support-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.post-leadership-team-support .leadership-team-support-implementation-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-leadership-team-support .leadership-team-support-impl-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.post-leadership-team-support .leadership-team-support-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.post-leadership-team-support .leadership-team-support-step-item {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.post-leadership-team-support .leadership-team-support-step-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.post-leadership-team-support .leadership-team-support-step-item:nth-child(1):before { content: '1'; }
.post-leadership-team-support .leadership-team-support-step-item:nth-child(2):before { content: '2'; }
.post-leadership-team-support .leadership-team-support-step-item:nth-child(3):before { content: '3'; }
.post-leadership-team-support .leadership-team-support-step-item:nth-child(4):before { content: '4'; }
.post-leadership-team-support .leadership-team-support-step-item:nth-child(5):before { content: '5'; }
.post-leadership-team-support .leadership-team-support-step-item:nth-child(6):before { content: '6'; }

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-implementation {
    padding: 5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-implementation-title {
    font-size: 2.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .post-leadership-team-support .leadership-team-support-implementation-img {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-implementation {
    padding: 2rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-implementation-title {
    font-size: 1.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-impl-subtitle {
    font-size: 1.25rem;
  }
  
  .post-leadership-team-support .leadership-team-support-steps-list {
    gap: 1rem;
  }
  
  .post-leadership-team-support .leadership-team-support-step-item {
    font-size: 0.875rem;
    padding-left: 2rem;
  }
}

.post-leadership-team-support .leadership-team-support-challenges {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-challenges-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-leadership-team-support .leadership-team-support-challenges-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.post-leadership-team-support .leadership-team-support-challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-leadership-team-support .leadership-team-support-challenge-item {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.post-leadership-team-support .leadership-team-support-challenge-head {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.post-leadership-team-support .leadership-team-support-challenge-text {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.post-leadership-team-support .leadership-team-support-challenge-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-challenges {
    padding: 5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-challenges-title {
    font-size: 2.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .post-leadership-team-support .leadership-team-support-challenge-item {
    padding: 2rem;
  }
}

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

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-challenges {
    padding: 2rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-challenges-title {
    font-size: 1.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-challenge-item {
    padding: 1rem;
  }
  
  .post-leadership-team-support .leadership-team-support-challenge-head {
    font-size: 1.1rem;
  }
  
  .post-leadership-team-support .leadership-team-support-challenge-text {
    font-size: 0.875rem;
  }
}

.post-leadership-team-support .leadership-team-support-impact {
  background: linear-gradient(135deg, #1a2847 0%, #0a0e27 100%);
  padding: 3rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-impact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-leadership-team-support .leadership-team-support-impact-title {
  font-size: 2.25rem;
  color: var(--color-text-light);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.post-leadership-team-support .leadership-team-support-impact-intro {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.post-leadership-team-support .leadership-team-support-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-leadership-team-support .leadership-team-support-benefit-box {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.post-leadership-team-support .leadership-team-support-benefit-stat {
  font-size: 2.5rem;
  color: var(--color-accent);
  font-weight: 800;
}

.post-leadership-team-support .leadership-team-support-benefit-desc {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.6;
  margin: 0;
}

.post-leadership-team-support .leadership-team-support-impact-text {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-impact {
    padding: 5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-impact-title {
    font-size: 2.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .post-leadership-team-support .leadership-team-support-benefit-box {
    padding: 2rem;
  }
}

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

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-impact {
    padding: 2rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-impact-title {
    font-size: 1.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-impact-intro {
    font-size: 0.95rem;
  }
  
  .post-leadership-team-support .leadership-team-support-benefit-box {
    padding: 1rem;
  }
  
  .post-leadership-team-support .leadership-team-support-benefit-stat {
    font-size: 2rem;
  }
  
  .post-leadership-team-support .leadership-team-support-benefit-desc {
    font-size: 0.875rem;
  }
}

.post-leadership-team-support .leadership-team-support-conclusion {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.post-leadership-team-support .leadership-team-support-conclusion-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
}

.post-leadership-team-support .leadership-team-support-conclusion-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.7;
}

.post-leadership-team-support .leadership-team-support-cta-box {
  background-color: #f0f4ff;
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.post-leadership-team-support .leadership-team-support-cta-text {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-conclusion {
    padding: 5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-conclusion-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-conclusion {
    padding: 2rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-conclusion-title {
    font-size: 1.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-conclusion-text {
    font-size: 0.9375rem;
  }
  
  .post-leadership-team-support .leadership-team-support-cta-box {
    padding: 1rem;
  }
}

.post-leadership-team-support .leadership-team-support-related {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

.post-leadership-team-support .leadership-team-support-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-leadership-team-support .leadership-team-support-related-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.post-leadership-team-support .leadership-team-support-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-leadership-team-support .leadership-team-support-related-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.post-leadership-team-support .leadership-team-support-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.post-leadership-team-support .leadership-team-support-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-leadership-team-support .leadership-team-support-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.post-leadership-team-support .leadership-team-support-related-card-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.post-leadership-team-support .leadership-team-support-related-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.post-leadership-team-support .leadership-team-support-related-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

.post-leadership-team-support .leadership-team-support-related-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .post-leadership-team-support .leadership-team-support-related {
    padding: 5rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-related-title {
    font-size: 2.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .post-leadership-team-support .leadership-team-support-related-card-body {
    padding: 2rem;
  }
}

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

@media (max-width: 767px) {
  .post-leadership-team-support .leadership-team-support-related {
    padding: 2rem 0;
  }
  
  .post-leadership-team-support .leadership-team-support-related-title {
    font-size: 1.5rem;
  }
  
  .post-leadership-team-support .leadership-team-support-related-card-body {
    padding: 1rem;
  }
  
  .post-leadership-team-support .leadership-team-support-related-card-title {
    font-size: 1.1rem;
  }
  
  .post-leadership-team-support .leadership-team-support-related-card-desc {
    font-size: 0.875rem;
  }
}

.post-leadership-team-support .leadership-team-support-breadcrumb-link:focus-visible,
.post-leadership-team-support .leadership-team-support-related-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

.post-continuous-improvement-feedback {
  width: 100%;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1.5rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-breadcrumb-link {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: all var(--transition-base);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-breadcrumb-separator {
  color: var(--color-text-gray);
  font-size: 0.875rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-breadcrumb-current {
  font-size: 0.875rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-breadcrumbs {
    padding: 2rem 0;
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-hero {
  background-color: var(--color-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-hero-title {
  font-size: 2.25rem;
  color: var(--color-text-light);
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 700;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-hero-lead {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 700px;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-hero-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #d0d0d0;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-read-time,
.post-continuous-improvement-feedback .continuous-improvement-feedback-publish-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-read-time i,
.post-continuous-improvement-feedback .continuous-improvement-feedback-publish-date i {
  font-size: 1rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-meta-separator {
  color: #c0c0c0;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-hero {
    padding: 6rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-hero-title {
    font-size: 3rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-hero-lead {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-hero {
    padding: 8rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-hero-title {
    font-size: 3.5rem;
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-1 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-1-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-1 {
    padding: 5rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-1-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-1 {
    padding: 6rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-1-content {
    gap: 4rem;
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-2 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-2-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-strategies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-strategy-card {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-strategy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-strategy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-strategy-title {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.3;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-strategy-text {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.7;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-strategies-note {
  background-color: #fff9e6;
  padding: 1.5rem;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  font-style: italic;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-2 {
    padding: 5rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-strategies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-strategy-card {
    padding: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-2-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-2 {
    padding: 6rem 0;
  }

  .post-continuous-improving-feedback .continuous-improvement-feedback-section-title {
    font-size: 2.5rem;
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-3 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-3-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-structure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.125rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-text {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.7;
}

.post-continuous-improving-feedback .continuous-improving-feedback-retro-text {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.7;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-retro-tips {
  background-color: #f0f8ff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary-light);
}

.post-continuous-improving-feedback .continuous-improving-feedback-retro-tips-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-tips-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-tips-item i {
  color: var(--color-accent);
  font-size: 1.125rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-3 {
    padding: 5rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-retro-structure {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-retro-item {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-3 {
    padding: 6rem 0;
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-4 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-4-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-culture-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-culture-block {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-culture-heading {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-culture-text {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.7;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-highlight-box {
  background: linear-gradient(135deg, #fff9e6 0%, #f0f8ff 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-highlight-box i {
  font-size: 1.5rem;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-highlight-text {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.8;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-highlight-text strong {
  color: var(--color-secondary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-4 {
    padding: 5rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-culture-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-culture-block {
    padding: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-highlight-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-4 {
    padding: 6rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-culture-blocks {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-5 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-section-5-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-step {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-step-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.post-continuous-improving-feedback .continuous-improving-feedback-step-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.post-continuous-improving-feedback .continuous-improving-feedback-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-step-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
}

.post-continuous-improvement-feedback .continuous-improving-feedback-step-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  margin: 0;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-step-description {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin-left: 4.5rem;
}

.post-continuous-improving-feedback .continuous-improving-feedback-step-description {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin-left: 4.5rem;
}

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

  .post-continuous-improvement-feedback .continuous-improvement-feedback-step {
    padding: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-steps {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-5 {
    padding: 6rem 0;
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion {
  background-color: var(--color-bg-navy);
  padding: 3rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-title {
  font-size: 1.875rem;
  color: var(--color-text-light);
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-display);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-text {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.8;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-accent {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-quote {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion {
    padding: 5rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-title {
    font-size: 2.5rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-accent {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion {
    padding: 6rem 0;
  }
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-title {
  font-size: 1.875rem;
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-display);
  text-align: center;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-subtitle {
  font-size: 1rem;
  color: var(--color-text-gray);
  text-align: center;
  line-height: 1.6;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.post-continuous-improving-feedback .continuous-improving-feedback-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e0e0e0;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-card-title {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.3;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-card-description {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  flex-grow: 1;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.post-continuous-improvement-feedback .continuous-improvement-feedback-related-link i {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-related {
    padding: 5rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-related-card-content {
    padding: 2rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-related {
    padding: 6rem 0;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-related-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .post-continuous-improvement-feedback .continuous-improvement-feedback-hero-title {
    font-size: 1.75rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-title {
    font-size: 1.5rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-related-title {
    font-size: 1.5rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-conclusion-title {
    font-size: 1.5rem;
  }

  .post-continuous-improvement-feedback .continuous-improvement-feedback-section-text {
    font-size: 0.95rem;
  }
}

.legal-docs {
  font-family: var(--font-primary);
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  line-height: 1.6;
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.legal-docs-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .legal-docs h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs h1 {
    font-size: 3.75rem;
  }
}

.legal-docs .updated-date {
  font-size: var(--size-small);
  color: var(--color-text-light-gray);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-docs section {
  overflow: hidden;
  padding: var(--space-xl) 0;
}

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

@media (min-width: 1024px) {
  .legal-docs section {
    padding: var(--space-3xl) 0;
  }
}

.legal-docs h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .legal-docs h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs h2 {
    font-size: 2.25rem;
  }
}

.legal-docs p {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .legal-docs p {
    font-size: var(--size-body);
  }
}

.legal-docs ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.legal-docs li {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .legal-docs li {
    font-size: var(--size-body);
  }
}

.legal-docs li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

@media (min-width: 768px) {
  .legal-docs .contact-section {
    padding: var(--space-xl);
  }
}

.legal-docs .contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.legal-docs .contact-item {
  padding: var(--space-md);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.legal-docs .contact-label {
  font-weight: 700;
  color: var(--color-text-dark);
  font-size: var(--size-small);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .legal-docs .contact-label {
    font-size: var(--size-body);
  }
}

.legal-docs .contact-text {
  color: var(--color-text-gray);
  font-size: var(--size-small);
  word-break: break-word;
}

@media (min-width: 768px) {
  .legal-docs .contact-text {
    font-size: var(--size-body);
  }
}

.legal-docs hr {
  border: none;
  height: 1px;
  background-color: var(--color-border-light);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .legal-docs hr {
    margin: var(--space-2xl) 0;
  }
}

  .thank-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  
  .thank-hero-section {
    background-color: var(--color-bg-dark);
    padding: 4rem 1rem;
    overflow: hidden;
  }

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

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

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    animation: pulse-success 2s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .thank-icon {
      width: 120px;
      height: 120px;
      margin-bottom: 2.5rem;
    }
  }

  .thank-icon i {
    font-size: 2.5rem;
    color: var(--color-bg-dark);
  }

  @media (min-width: 768px) {
    .thank-icon i {
      font-size: 3.5rem;
    }
  }

  .thank-hero-section h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }

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

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

  .thank-lead {
    font-size: 1rem;
    color: #d0d0d0;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.125rem;
    }
  }

  
  .thank-content-section {
    background-color: var(--color-bg-light);
    padding: 3rem 1rem;
    overflow: hidden;
    flex: 1;
  }

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

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

  .thank-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  @media (min-width: 768px) {
    .thank-content-wrapper {
      gap: 4rem;
    }
  }

  
  .thank-message-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .thank-message-card {
      padding: 3rem;
    }
  }

  .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    margin: 0 auto 1.5rem;
  }

  .card-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
  }

  .thank-message-card h2 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 1rem 0;
  }

  @media (min-width: 768px) {
    .thank-message-card h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .thank-message-card p {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin: 0;
  }

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

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

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

  .benefit-item {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media (min-width: 768px) {
    .benefit-item {
      padding: 2rem;
    }
  }

  .benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #e8f5f0;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
  }

  .benefit-icon i {
    font-size: 1.5rem;
    color: var(--color-accent);
  }

  .benefit-item h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 0.75rem 0;
  }

  @media (min-width: 768px) {
    .benefit-item h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
  }

  .benefit-item p {
    font-size: 0.875rem;
    color: var(--color-text-gray);
    line-height: 1.5;
    margin: 0;
  }

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

  
  .thank-cta-section {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .thank-cta-section {
      padding: 3rem;
    }
  }

  .thank-cta-section h2 {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 1rem 0;
  }

  @media (min-width: 768px) {
    .thank-cta-section h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .thank-cta-section p {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin: 0 0 2rem 0;
  }

  @media (min-width: 768px) {
    .thank-cta-section p {
      font-size: 1.0625rem;
      margin-bottom: 2.5rem;
    }
  }

  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
  }

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

  .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-md);
  }

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

  
  @keyframes pulse-success {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
    }
    50% {
      box-shadow: 0 0 0 10px rgba(0, 212, 170, 0);
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .thank-icon,
    .benefit-item,
    .btn {
      animation: none;
      transition: none;
    }
  }

  
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  
  .error-hero {
    background: linear-gradient(135deg, var(--color-bg-navy) 0%, var(--color-bg-dark) 100%);
    padding: var(--space-xl) 0;
    overflow: hidden;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
  }

  .error-hero .container {
    position: relative;
    z-index: 2;
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
  }

  
  .error-illustration {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
  }

  .illustration-404 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-display);
    position: relative;
    line-height: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 102, 204, 0.3));
  }

  .number.four {
    animation: bounce-4 2s ease-in-out infinite;
  }

  .number.zero {
    position: relative;
  }

  .number.zero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    animation: spin-zero 3s linear infinite;
  }

  .number.four-alt {
    animation: bounce-4-alt 2s ease-in-out infinite 0.2s;
  }

  .broken-link {
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    transform: rotate(-45deg);
    left: 40%;
    top: 35%;
    border-radius: 2px;
  }

  .missing-piece {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px dashed var(--color-accent);
    border-radius: 4px;
    right: 25%;
    bottom: 15%;
    opacity: 0.6;
  }

  
  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .element {
    position: absolute;
    opacity: 0.6;
  }

  .element-1 {
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float-1 4s ease-in-out infinite;
  }

  .element-2 {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    top: 20%;
    right: 15%;
    animation: float-2 5s ease-in-out infinite;
  }

  .element-3 {
    width: 25px;
    height: 25px;
    background: var(--color-secondary);
    top: 60%;
    left: 5%;
    animation: float-3 3.5s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  }

  .element-4 {
    width: 35px;
    height: 35px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    bottom: 15%;
    right: 10%;
    animation: float-4 4.5s ease-in-out infinite;
  }

  .element-5 {
    width: 50px;
    height: 50px;
    border: 2px dashed var(--color-accent);
    bottom: 20%;
    left: 15%;
    animation: float-5 5.5s ease-in-out infinite;
    opacity: 0.4;
  }

  
  .error-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .error-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
    letter-spacing: -2px;
  }

  .error-subtitle {
    font-size: var(--size-h2);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-weight: 700;
    font-family: var(--font-display);
  }

  .error-description {
    font-size: var(--size-body);
    color: #d0d4e0;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
  }

  
  .error-suggestions {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-primary);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
  }

  .suggestions-title {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: var(--size-small);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .suggestions-list li {
    color: #b8c0d0;
    font-size: var(--size-small);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .suggestions-list i {
    color: var(--color-accent);
    font-size: 1.1rem;
  }

  
  .error-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }

  .btn {
    padding: 1rem 2rem;
    font-size: var(--size-body);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
  }

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

  .btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
  }

  
  .error-teamwork {
    background-color: var(--color-bg-white);
    padding: var(--space-xl) 0;
    overflow: hidden;
  }

  .error-teamwork-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .teamwork-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--color-bg-light);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-light);
  }

  .teamwork-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
  }

  .card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
    font-size: 1.75rem;
  }

  .teamwork-card h3 {
    font-size: var(--size-h5);
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
  }

  .teamwork-card p {
    color: var(--color-text-gray);
    font-size: var(--size-small);
    line-height: 1.6;
  }

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

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

  @keyframes spin-zero {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes float-1 {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-20px);
      opacity: 0.8;
    }
  }

  @keyframes float-2 {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-25px) rotate(5deg);
      opacity: 0.8;
    }
  }

  @keyframes float-3 {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-15px);
      opacity: 0.8;
    }
  }

  @keyframes float-4 {
    0%, 100% {
      transform: scale(1);
      opacity: 0.6;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
  }

  @keyframes float-5 {
    0%, 100% {
      transform: rotate(0deg);
      opacity: 0.4;
    }
    50% {
      transform: rotate(10deg);
      opacity: 0.6;
    }
  }

  

  @media (min-width: 768px) {
    .error-hero {
      padding: var(--space-3xl) 0;
      min-height: 75vh;
    }

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

    .error-illustration {
      height: 350px;
      margin-bottom: var(--space-2xl);
    }

    .number {
      font-size: 8rem;
    }

    .error-title {
      font-size: 5rem;
    }

    .error-subtitle {
      font-size: var(--size-h1);
    }

    .error-actions {
      flex-direction: row;
      justify-content: center;
    }

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

    .error-teamwork {
      padding: var(--space-3xl) 0;
    }

    .error-teamwork-content {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-2xl);
    }

    .teamwork-card {
      padding: var(--space-2xl);
    }

    .card-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }

    .teamwork-card h3 {
      font-size: var(--size-h4);
    }

    .teamwork-card p {
      font-size: var(--size-body);
    }
  }

  @media (min-width: 1024px) {
    .error-hero {
      padding: var(--space-3xl) 0;
      min-height: 80vh;
    }

    .error-illustration {
      height: 400px;
      margin-bottom: var(--space-3xl);
    }

    .number {
      font-size: 10rem;
    }

    .error-title {
      font-size: 5.5rem;
      margin-bottom: var(--space-md);
    }

    .error-subtitle {
      font-size: var(--size-h1);
    }

    .error-description {
      font-size: 1.0625rem;
    }

    .suggestions-title {
      font-size: 0.875rem;
    }

    .suggestions-list li {
      font-size: 0.9375rem;
    }

    .error-suggestions {
      padding: var(--space-lg) var(--space-xl);
    }

    .error-teamwork {
      padding: var(--space-3xl) 0;
    }

    .teamwork-card {
      padding: var(--space-2xl) var(--space-lg);
    }

    .teamwork-card h3 {
      font-size: var(--size-h4);
    }

    .teamwork-card p {
      font-size: var(--size-body);
    }
  }

  @media (max-width: 767px) {
    .error-hero {
      padding: var(--space-lg) 0;
      min-height: auto;
    }

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

    .error-illustration {
      height: 250px;
      margin-bottom: var(--space-md);
    }

    .number {
      font-size: 4rem;
    }

    .error-title {
      font-size: 2.5rem;
      margin-bottom: var(--space-xs);
    }

    .error-subtitle {
      font-size: 1.5rem;
      margin-bottom: var(--space-md);
    }

    .error-description {
      font-size: 0.9375rem;
      margin-bottom: var(--space-md);
    }

    .error-suggestions {
      padding: var(--space-md);
      margin-bottom: var(--space-md);
    }

    .suggestions-title {
      font-size: 0.75rem;
      margin-bottom: var(--space-xs);
    }

    .suggestions-list li {
      font-size: 0.8125rem;
      gap: 0.5rem;
    }

    .suggestions-list i {
      font-size: 1rem;
    }

    .error-actions {
      gap: var(--space-sm);
      margin-top: var(--space-md);
    }

    .btn {
      padding: 0.875rem 1.5rem;
      font-size: 0.9375rem;
      width: 100%;
    }

    .error-teamwork {
      padding: var(--space-lg) 0;
    }

    .error-teamwork-content {
      grid-template-columns: 1fr;
      gap: var(--space-md);
    }

    .teamwork-card {
      padding: var(--space-md);
    }

    .card-icon {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      margin-bottom: var(--space-sm);
    }

    .teamwork-card h3 {
      font-size: var(--size-h5);
      margin-bottom: var(--space-xs);
    }

    .teamwork-card p {
      font-size: var(--size-small);
    }
  }