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

:root {
  /* Colors */
  --color-primary: #d4372a;
  --color-primary-dark: #a32820;
  --color-primary-light: #f5e6e4;
  --color-secondary: #1a3a5c;
  --color-secondary-light: #e8f0f7;
  --color-accent: #f39c12;
  --color-success: #27ae60;
  --color-text-dark: #1a1a1a;
  --color-text-light: #ffffff;
  --color-text-muted: #666666;
  --color-bg-dark: #0f1419;
  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-border: #e0e0e0;
  --color-border-dark: #333333;

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

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

  /* Shadows */
  --shadow-sm: 0 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.15);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.2);

  /* Borders */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Icon sizes */
  --icon-sm: 1.25rem;
  --icon-md: 1.75rem;
  --icon-lg: 2.5rem;
  --icon-xl: 3.5rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Container */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

h1 {
  font-size: 2.25rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 1.875rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.2px;
}

h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
}

h5 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
}

h6 {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
}

p {
  font-size: 0.875rem;
  line-height: 1.7;
}

small {
  font-size: 0.75rem;
}

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

/* Lists */
ul, ol {
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

.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-outline-light {
  background-color: transparent;
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

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

/* Form Elements */
input, textarea, select {
  font-family: var(--font-secondary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
}

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

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

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

label {
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

.px-md {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

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

/* Section Base Styles */
section {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

/* Responsive Typography */
@media (min-width: 768px) {
  h1 {
    font-size: 2.875rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.375rem;
  }

  p {
    font-size: 1rem;
  }
}

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

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.875rem;
  }

  p {
    font-size: 1.0625rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Card Component */
.card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

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

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

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

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

  .grid {
    gap: 2rem;
  }
}

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

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

  .grid {
    gap: 2.5rem;
  }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.badge-success {
  background-color: rgba(39, 174, 96, 0.1);
  color: var(--color-success);
}

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

/* Icon Container */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
}

.icon-box-sm {
  width: 3rem;
  height: 3rem;
  font-size: var(--icon-md);
}

.icon-box-md {
  width: 4rem;
  height: 4rem;
  font-size: var(--icon-lg);
}

.icon-box-lg {
  width: 5rem;
  height: 5rem;
  font-size: var(--icon-xl);
}

.icon-box-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.icon-box-secondary {
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
}

.icon-box-accent {
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--color-accent);
}

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

/* Header Mobile Toggle */
.header-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 767px) {
  .header-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Responsive Container */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 3rem;
  }
}
.header-elite-zone {
    background-color: var(--color-bg-dark);
    border-bottom: 2px solid var(--color-primary);
    position: static;
    width: 100%;
    z-index: 100;
    overflow: hidden;
  }

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

  /* Logo / Brand */
  .header-elite-zone-logo {
    flex-shrink: 0;
  }

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

  .header-elite-zone-brand:hover {
    color: var(--color-primary);
  }

  .header-elite-zone-brand i {
    font-size: var(--icon-md);
    color: var(--color-primary);
  }

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

  .header-elite-zone-nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    padding-bottom: 0.5rem;
  }

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

  .header-elite-zone-nav-link:hover {
    color: var(--color-primary);
  }

  .header-elite-zone-nav-link:hover::after {
    width: 100%;
  }

  /* CTA Button */
  .header-elite-zone-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
  }

  .header-elite-zone-cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 55, 42, 0.3);
  }

  /* Mobile Toggle Button */
  .header-elite-zone-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    align-items: center;
    justify-content: center;
  }

  .header-elite-zone-mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: all var(--transition-base);
    display: block;
  }

  .header-elite-zone-mobile-toggle:hover span {
    background-color: var(--color-primary);
  }

  /* Mobile Menu */
  .header-elite-zone-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 99;
    overflow-y: auto;
  }

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

  .header-elite-zone-mobile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-border-dark);
  }

  .header-elite-zone-mobile-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
  }

  .header-elite-zone-mobile-brand i {
    font-size: var(--icon-md);
    color: var(--color-primary);
  }

  .header-elite-zone-mobile-close {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
  }

  .header-elite-zone-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-elite-zone-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-md) 0;
    flex: 1;
  }

  .header-elite-zone-mobile-link {
    color: var(--color-text-light);
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-md);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
    font-size: 1rem;
  }

  .header-elite-zone-mobile-link:hover {
    background-color: rgba(212, 55, 42, 0.1);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: calc(var(--spacing-md) + 0.5rem);
  }

  .header-elite-zone-mobile-cta {
    padding: 0.875rem var(--spacing-md);
    margin: var(--spacing-md);
    background-color: var(--color-primary);
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: all var(--transition-base);
    font-size: 1rem;
    cursor: pointer;
  }

  .header-elite-zone-mobile-cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 55, 42, 0.3);
  }

  /* Tablet Breakpoint (768px) */
  @media (min-width: 768px) {
    .header-elite-zone-container {
      padding: 0 var(--spacing-md);
      height: 75px;
    }

    .header-elite-zone-desktop-nav {
      display: flex;
    }

    .header-elite-zone-cta-button {
      display: inline-block;
    }

    .header-elite-zone-mobile-toggle {
      display: none;
    }

    .header-elite-zone-mobile-menu {
      display: none;
    }

    .header-elite-zone-nav-link {
      font-size: 1rem;
    }

    .header-elite-zone-cta-button {
      padding: 0.875rem 2rem;
      font-size: 1rem;
    }
  }

  /* Desktop Breakpoint (1024px) */
  @media (min-width: 1024px) {
    .header-elite-zone-container {
      padding: 0 var(--spacing-lg);
      height: 80px;
    }

    .header-elite-zone-brand span {
      font-size: 1.35rem;
    }

    .header-elite-zone-desktop-nav {
      gap: 3rem;
    }

    .header-elite-zone-nav-link {
      font-size: 1.05rem;
      font-weight: var(--font-weight-medium);
    }

    .header-elite-zone-cta-button {
      padding: 1rem 2.25rem;
      font-size: 1.05rem;
    }
  }

  /* Accessibility */
  .header-elite-zone-mobile-toggle:focus,
  .header-elite-zone-mobile-close:focus,
  .header-elite-zone-brand:focus,
  .header-elite-zone-nav-link:focus,
  .header-elite-zone-mobile-link:focus,
  .header-elite-zone-cta-button:focus,
  .header-elite-zone-mobile-cta:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  /* Prefers Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .header-elite-zone-brand,
    .header-elite-zone-nav-link,
    .header-elite-zone-cta-button,
    .header-elite-zone-mobile-toggle span,
    .header-elite-zone-mobile-close,
    .header-elite-zone-mobile-menu,
    .header-elite-zone-mobile-link,
    .header-elite-zone-mobile-cta {
      transition: none;
    }
  }

    .training-hub {
    width: 100%;
    background-color: var(--color-bg-white);
  }

  /* ===== HERO SECTION ===== */
  .training-hub .hero-section {
    background-color: var(--color-secondary);
    padding: 4rem 0;
    overflow: hidden;
  }

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

  .training-hub .hero-text h1 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .training-hub .hero-text p {
    color: #d4d8e0;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.8;
  }

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

  .training-hub .hero-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .training-hub .hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  }

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

    .training-hub .hero-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .training-hub .hero-text h1 {
      font-size: 2.875rem;
    }

    .training-hub .hero-text p {
      font-size: 1rem;
    }

    .training-hub .hero-buttons {
      flex-direction: row;
      gap: 1.25rem;
    }

    .training-hub .hero-image img {
      height: 400px;
    }
  }

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

    .training-hub .hero-text h1 {
      font-size: 3.75rem;
      margin-bottom: 1.5rem;
    }

    .training-hub .hero-text p {
      font-size: 1.0625rem;
      margin-bottom: 2.5rem;
    }

    .training-hub .hero-image img {
      height: 450px;
    }
  }

  /* ===== FEATURED POSTS SECTION ===== */
  .training-hub .featured-posts-section {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  .training-hub .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .training-hub .section-header h2 {
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.875rem;
  }

  .training-hub .section-header p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

  .training-hub .post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--color-border);
  }

  .training-hub .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .training-hub .post-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .training-hub .post-body h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .training-hub .post-body p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .training-hub .read-more {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    width: fit-content;
  }

  .training-hub .read-more:hover {
    gap: 0.75rem;
  }

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

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

    .training-hub .section-header {
      margin-bottom: 3rem;
    }

    .training-hub .section-header h2 {
      font-size: 2.25rem;
    }

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

    .training-hub .post-body {
      padding: 2rem;
      gap: 1.25rem;
    }

    .training-hub .post-body h3 {
      font-size: 1.375rem;
    }
  }

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

    .training-hub .section-header h2 {
      font-size: 3rem;
    }

    .training-hub .posts-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

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

    .training-hub .post-body {
      padding: 2.5rem;
      gap: 1.5rem;
    }

    .training-hub .post-body h3 {
      font-size: 1.5rem;
    }
  }

  /* ===== COMPONENTS SECTION ===== */
  .training-hub .components-section {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

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

  .training-hub .component-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
  }

  .training-hub .component-card:hover {
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .training-hub .component-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .training-hub .component-card h3 {
    color: var(--color-text-dark);
    font-size: 1.125rem;
  }

  .training-hub .component-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
  }

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

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

    .training-hub .component-card {
      padding: 2rem;
      gap: 1.25rem;
    }

    .training-hub .component-icon {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.75rem;
    }

    .training-hub .component-card h3 {
      font-size: 1.25rem;
    }
  }

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

    .training-hub .components-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .training-hub .component-card {
      padding: 2.5rem;
      gap: 1.5rem;
    }

    .training-hub .section-header h2 {
      font-size: 3rem;
    }
  }

  /* ===== METHODOLOGY SECTION ===== */
  .training-hub .methodology-section {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  .training-hub .methodology-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .training-hub .methodology-text h2 {
    color: var(--color-text-dark);
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .training-hub .methodology-text > p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .training-hub .methodology-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .training-hub .methodology-item {
    background-color: var(--color-bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .training-hub .methodology-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    font-family: var(--font-primary);
  }

  .training-hub .methodology-item h4 {
    color: var(--color-text-dark);
    font-size: 1.125rem;
  }

  .training-hub .methodology-item p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .training-hub .methodology-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .training-hub .methodology-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  }

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

    .training-hub .methodology-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .training-hub .methodology-text h2 {
      font-size: 2.25rem;
    }

    .training-hub .methodology-image img {
      height: 400px;
    }

    .training-hub .methodology-item {
      padding: 2rem;
      gap: 0.75rem;
    }
  }

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

    .training-hub .methodology-text h2 {
      font-size: 3rem;
    }

    .training-hub .methodology-image img {
      height: 450px;
    }

    .training-hub .methodology-item {
      padding: 2.5rem;
    }
  }

  /* ===== TEAM DEVELOPMENT SECTION ===== */
  .training-hub .team-development-section {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .training-hub .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .training-hub .feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    background-color: var(--color-secondary-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
  }

  .training-hub .feature-item h3 {
    color: var(--color-text-dark);
    font-size: 1.125rem;
  }

  .training-hub .feature-item p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
  }

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

    .training-hub .development-features {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .training-hub .feature-item {
      padding: 2rem;
    }

    .training-hub .feature-icon {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.75rem;
    }
  }

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

    .training-hub .development-features {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .training-hub .feature-item {
      padding: 2.5rem;
    }
  }

  /* ===== ATHLETIC DEVELOPMENT SECTION ===== */
  .training-hub .athletic-development-section {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

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

  .training-hub .development-item {
    background-color: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .training-hub .development-item h3 {
    color: var(--color-text-dark);
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary-light);
  }

  .training-hub .development-item p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .training-hub .feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .training-hub .feature-list li {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .training-hub .feature-list i {
    color: var(--color-success);
    font-size: 1rem;
  }

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

    .training-hub .development-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }

    .training-hub .development-item {
      padding: 2.5rem;
      gap: 1.5rem;
    }
  }

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

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

    .training-hub .development-item h3 {
      font-size: 1.375rem;
    }
  }

  /* ===== CONTACT SECTION ===== */
  .training-hub .contact-section {
    background-color: var(--color-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  .training-hub .contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .training-hub .contact-header h2 {
    color: var(--color-text-light);
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .training-hub .contact-header p {
    color: #d4d8e0;
    font-size: 0.9375rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
  }

  .training-hub .contact-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .training-hub .contact-form {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
  }

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

  .training-hub .form-group label {
    color: var(--color-text-dark);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
  }

  .training-hub .form-group input,
  .training-hub .form-group textarea {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
  }

  .training-hub .form-group input::placeholder,
  .training-hub .form-group textarea::placeholder {
    color: var(--color-text-muted);
  }

  .training-hub .form-group input:focus,
  .training-hub .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 55, 42, 0.1);
  }

  .training-hub .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-secondary);
  }

  .training-hub .form-privacy {
    text-align: center;
  }

  .training-hub .form-privacy p {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
  }

  .training-hub .form-privacy a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-base);
  }

  .training-hub .form-privacy a:hover {
    color: var(--color-primary-dark);
  }

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

    .training-hub .contact-header h2 {
      font-size: 2.25rem;
    }

    .training-hub .contact-form {
      padding: 2.5rem;
      gap: 2rem;
    }
  }

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

    .training-hub .contact-header h2 {
      font-size: 3rem;
    }

    .training-hub .contact-form {
      padding: 3rem;
    }
  }

  /* ===== COOKIE BANNER ===== */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideInUp 0.3s ease-in-out;
  }

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

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

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

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

  .btn-outline-cookie {
    border-color: #d4d8e0;
    color: #d4d8e0;
  }

  .btn-outline-cookie:hover {
    background-color: #d4d8e0;
    color: var(--color-bg-dark);
  }

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

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

    .cookie-buttons {
      flex-direction: row;
      gap: 1rem;
      width: auto;
    }
  }

  @keyframes slideInUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

    /* ========================================
     Footer Component Styles
     ======================================== */

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

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

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

  /* Footer Content Wrapper */
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  @media (min-width: 1024px) {
    .footer-content {
      grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
      gap: 3rem;
      align-items: flex-start;
    }
  }

  /* ========================================
     About Section
     ======================================== */

  .footer-about {
    display: block;
  }

  .footer-about-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
  }

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

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

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

  /* ========================================
     Navigation Section
     ======================================== */

  .footer-nav-section {
    display: block;
  }

  .footer-nav-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  @media (min-width: 768px) {
    .footer-nav-title {
      font-size: 1.0625rem;
    }
  }

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

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

  .footer-link {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: #b8bcc4;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    position: relative;
  }

  .footer-link:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
  }

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

  /* ========================================
     Legal Section
     ======================================== */

  .footer-legal-section {
    display: block;
  }

  .footer-legal-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  @media (min-width: 768px) {
    .footer-legal-title {
      font-size: 1.0625rem;
    }
  }

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

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

  .footer-legal-link {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    color: #b8bcc4;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    position: relative;
  }

  .footer-legal-link:hover {
    color: var(--color-accent);
    padding-left: 0.5rem;
  }

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

  /* ========================================
     Copyright Section
     ======================================== */

  .footer-copyright {
    display: block;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .footer-copyright {
      padding-top: var(--spacing-xl);
      margin-top: var(--spacing-xl);
    }
  }

  .footer-copyright-text {
    font-family: var(--font-secondary);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-regular);
    color: #8a8f96;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

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

  .footer-copyright-text i {
    font-size: var(--icon-sm);
    color: var(--color-primary);
  }

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

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

  /* Dark mode optimization */
  @media (prefers-color-scheme: dark) {
    .footer {
      background-color: var(--color-bg-dark);
    }

    .footer-about-text,
    .footer-link,
    .footer-legal-link {
      color: #b8bcc4;
    }
  }
    

/* Category Page Styles */
/* Category Page: Handball Training Techniques */

/* Hero Section */
.category-hero-handball-training-techniques {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a4a7c 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

.category-hero-handball-training-techniques::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(212, 55, 42, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.hero-content-handball-training-techniques {
  position: relative;
  z-index: 1;
  text-align: center;
}

.category-hero-handball-training-techniques h1 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.category-hero-handball-training-techniques p {
  color: #e0e0e0;
  font-size: 0.875rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .category-hero-handball-training-techniques {
    padding: 5rem 0;
  }

  .category-hero-handball-training-techniques h1 {
    font-size: 2.875rem;
  }

  .category-hero-handball-training-techniques p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .category-hero-handball-training-techniques {
    padding: 6rem 0;
  }

  .category-hero-handball-training-techniques h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
  }

  .category-hero-handball-training-techniques p {
    font-size: 1.0625rem;
  }
}

/* Posts Grid Section */
.posts-grid-section-handball-training-techniques {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .posts-grid-section-handball-training-techniques {
    padding: 5rem 0;
  }

  .posts-grid-handball-training-techniques {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-section-handball-training-techniques {
    padding: 6rem 0;
  }

  .posts-grid-handball-training-techniques {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Card Styling */
.card-handball-training-techniques {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 250ms ease-in-out;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.card-handball-training-techniques:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-handball-training-techniques img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-handball-training-techniques h3 {
  color: #1a1a1a;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
}

.card-handball-training-techniques p {
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.card-handball-training-techniques a {
  color: #d4372a;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 250ms ease-in-out;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.card-handball-training-techniques a:hover {
  color: #a32820;
  transform: translateX(4px);
}

.card-handball-training-techniques a::after {
  content: '→';
  font-size: 1rem;
}

@media (min-width: 768px) {
  .card-handball-training-techniques {
    padding: 2rem;
    gap: 1.25rem;
  }

  .card-handball-training-techniques h3 {
    font-size: 1.5rem;
  }

  .card-handball-training-techniques p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .card-handball-training-techniques {
    padding: 2.5rem;
    gap: 1.5rem;
  }

  .card-handball-training-techniques h3 {
    font-size: 1.75rem;
  }

  .card-handball-training-techniques p {
    font-size: 1rem;
  }
}

/* Additional Section 1 */
.additional-section-one-handball-training-techniques {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

.additional-content-one-handball-training-techniques h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  text-align: center;
}

.additional-content-one-handball-training-techniques > p {
  color: #666666;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.principles-list-handball-training-techniques {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.principle-item-handball-training-techniques {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #d4372a;
}

.principle-item-handball-training-techniques i {
  color: #d4372a;
  font-size: 1.75rem;
  align-self: flex-start;
}

.principle-item-handball-training-techniques h4 {
  color: #1a1a1a;
  font-size: 1.125rem;
  margin: 0;
}

.principle-item-handball-training-techniques p {
  color: #666666;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .additional-section-one-handball-training-techniques {
    padding: 5rem 0;
  }

  .additional-content-one-handball-training-techniques h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .additional-content-one-handball-training-techniques > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .principles-list-handball-training-techniques {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .principle-item-handball-training-techniques {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .additional-section-one-handball-training-techniques {
    padding: 6rem 0;
  }

  .additional-content-one-handball-training-techniques h2 {
    font-size: 3rem;
  }

  .principles-list-handball-training-techniques {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Additional Section 2 */
.additional-section-two-handball-training-techniques {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  padding: 3rem 0;
  overflow: hidden;
}

.additional-content-two-handball-training-techniques h2 {
  color: #1a1a1a;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  text-align: center;
}

.additional-content-two-handball-training-techniques > p {
  color: #666666;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.methodology-grid-handball-training-techniques {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.methodology-item-handball-training-techniques {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.methodology-item-handball-training-techniques:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.methodology-icon-handball-training-techniques {
  width: 3rem;
  height: 3rem;
  background-color: rgba(212, 55, 42, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4372a;
  font-size: 1.5rem;
}

.methodology-item-handball-training-techniques h4 {
  color: #1a1a1a;
  font-size: 1.125rem;
  margin: 0;
}

.methodology-item-handball-training-techniques p {
  color: #666666;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .additional-section-two-handball-training-techniques {
    padding: 5rem 0;
  }

  .additional-content-two-handball-training-techniques h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }

  .additional-content-two-handball-training-techniques > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .methodology-grid-handball-training-techniques {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .methodology-item-handball-training-techniques {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .additional-section-two-handball-training-techniques {
    padding: 6rem 0;
  }

  .additional-content-two-handball-training-techniques h2 {
    font-size: 3rem;
  }

  .methodology-grid-handball-training-techniques {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Post Page 1 Styles */
.post-defensive-strategies-handball {
      background-color: var(--color-bg-white);
    }

    /* Breadcrumbs */
    .defensive-strategies-handball-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1rem 0;
      overflow: hidden;
    }

    .defensive-strategies-handball-breadcrumbs .container {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    .defensive-strategies-handball-breadcrumbs a {
      color: var(--color-primary);
      transition: color var(--transition-base);
    }

    .defensive-strategies-handball-breadcrumbs a:hover {
      color: var(--color-primary-dark);
    }

    .defensive-strategies-handball-breadcrumbs span {
      color: var(--color-text-muted);
      font-weight: var(--font-weight-medium);
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-breadcrumbs {
        padding: 1.25rem 0;
      }

      .defensive-strategies-handball-breadcrumbs .container {
        font-size: 0.9375rem;
      }
    }

    /* Hero Section */
    .defensive-strategies-handball-hero {
      background: linear-gradient(135deg, var(--color-secondary) 0%, #0f2a47 100%);
      color: var(--color-text-light);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    .defensive-strategies-handball-hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      z-index: 0;
    }

    .defensive-strategies-handball-hero .container {
      position: relative;
      z-index: 1;
    }

    .defensive-strategies-handball-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 800px;
    }

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

    .defensive-strategies-handball-hero-lead {
      color: #e8f0f7;
      font-size: 1rem;
      line-height: 1.7;
    }

    .defensive-strategies-handball-hero-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.85);
      flex-wrap: wrap;
    }

    .defensive-strategies-handball-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .defensive-strategies-handball-hero-meta i {
      font-size: var(--icon-sm);
      color: var(--color-accent);
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-hero {
        padding: 5rem 0;
      }

      .defensive-strategies-handball-hero h1 {
        font-size: 2.875rem;
      }

      .defensive-strategies-handball-hero-lead {
        font-size: 1.125rem;
      }
    }

    @media (min-width: 1024px) {
      .defensive-strategies-handball-hero {
        padding: 6rem 0;
      }

      .defensive-strategies-handball-hero h1 {
        font-size: 3.75rem;
      }

      .defensive-strategies-handball-hero-lead {
        font-size: 1.1875rem;
      }
    }

    /* Content Sections */
    .defensive-strategies-handball-content-section {
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .defensive-strategies-handball-content-section {
        padding: 5rem 0;
      }
    }

    .defensive-strategies-handball-content-1 {
      background-color: var(--color-bg-white);
    }

    .defensive-strategies-handball-content-1-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .defensive-strategies-handball-content-1 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
    }

    .defensive-strategies-handball-content-1 p {
      color: var(--color-text-muted);
      line-height: 1.8;
    }

    .defensive-strategies-handball-content-1 .defensive-strategies-handball-highlight-box {
      background-color: var(--color-secondary-light);
      border-left: 4px solid var(--color-secondary);
      padding: 1.5rem;
      border-radius: var(--border-radius-md);
      color: var(--color-secondary);
      font-weight: var(--font-weight-medium);
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-content-1 h2 {
        font-size: 2.25rem;
      }

      .defensive-strategies-handball-content-1-content {
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .defensive-strategies-handball-content-1 h2 {
        font-size: 2.5rem;
      }
    }

    /* Content 2 - Two Column */
    .defensive-strategies-handball-content-2 {
      background-color: var(--color-bg-light);
    }

    .defensive-strategies-handball-content-2-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    .defensive-strategies-handball-content-2 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
    }

    .defensive-strategies-handball-content-2 p {
      color: var(--color-text-muted);
      line-height: 1.8;
    }

    .defensive-strategies-handball-content-2-text {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .defensive-strategies-handball-content-2-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .defensive-strategies-handball-content-2-list li {
      display: flex;
      gap: 1rem;
      color: var(--color-text-dark);
      font-weight: var(--font-weight-medium);
    }

    .defensive-strategies-handball-content-2-list i {
      color: var(--color-primary);
      font-size: var(--icon-md);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .defensive-strategies-handball-content-2-image {
      width: 100%;
      height: auto;
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-content-2-content {
        grid-template-columns: 1fr 1fr;
      }

      .defensive-strategies-handball-content-2 h2 {
        font-size: 2.25rem;
        grid-column: 1 / -1;
      }

      .defensive-strategies-handball-content-2-image {
        max-height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .defensive-strategies-handball-content-2 h2 {
        font-size: 2.5rem;
      }

      .defensive-strategies-handball-content-2-content {
        gap: 3rem;
      }
    }

    /* Content 3 - Numbered Steps */
    .defensive-strategies-handball-content-3 {
      background-color: var(--color-bg-white);
    }

    .defensive-strategies-handball-content-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .defensive-strategies-handball-content-3 h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
    }

    .defensive-strategies-handball-content-3 p {
      color: var(--color-text-muted);
      line-height: 1.8;
    }

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

    .defensive-strategies-handball-step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.5rem;
      align-items: flex-start;
      background-color: var(--color-bg-light);
      padding: 1.5rem;
      border-radius: var(--border-radius-md);
      border: 1px solid var(--color-border);
    }

    .defensive-strategies-handball-step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      background-color: var(--color-primary);
      color: var(--color-text-light);
      border-radius: 50%;
      font-weight: var(--font-weight-bold);
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .defensive-strategies-handball-step-content h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    .defensive-strategies-handball-step-content p {
      color: var(--color-text-muted);
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-content-3 h2 {
        font-size: 2.25rem;
      }

      .defensive-strategies-handball-steps {
        gap: 2rem;
      }

      .defensive-strategies-handball-step {
        padding: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .defensive-strategies-handball-content-3 h2 {
        font-size: 2.5rem;
      }

      .defensive-strategies-handball-content-3-content {
        gap: 2.5rem;
      }
    }

    /* Content 4 - Key Principles Grid */
    .defensive-strategies-handball-content-4 {
      background: linear-gradient(135deg, var(--color-secondary) 0%, #0f2a47 100%);
      color: var(--color-text-light);
    }

    .defensive-strategies-handball-content-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .defensive-strategies-handball-content-4 h2 {
      color: var(--color-text-light);
      font-size: 1.75rem;
    }

    .defensive-strategies-handball-principles-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .defensive-strategies-handball-principle-card {
      background-color: rgba(255, 255, 255, 0.08);
      padding: 1.5rem;
      border-radius: var(--border-radius-md);
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .defensive-strategies-handball-principle-card h3 {
      color: var(--color-accent);
      font-size: 1.125rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .defensive-strategies-handball-principle-card i {
      font-size: var(--icon-md);
    }

    .defensive-strategies-handball-principle-card p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-content-4 h2 {
        font-size: 2.25rem;
      }

      .defensive-strategies-handball-principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .defensive-strategies-handball-principle-card {
        padding: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .defensive-strategies-handball-content-4 h2 {
        font-size: 2.5rem;
      }

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

      .defensive-strategies-handball-content-4-content {
        gap: 3rem;
      }
    }

    /* Disclaimer Section */
    .defensive-strategies-handball-disclaimer {
      background-color: var(--color-bg-light);
    }

    .defensive-strategies-handball-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    .defensive-strategies-handball-disclaimer-header {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .defensive-strategies-handball-disclaimer-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      background-color: var(--color-secondary-light);
      color: var(--color-secondary);
      border-radius: var(--border-radius-md);
      flex-shrink: 0;
      font-size: var(--icon-md);
    }

    .defensive-strategies-handball-disclaimer-header h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin: 0;
    }

    .defensive-strategies-handball-disclaimer-text {
      color: var(--color-text-muted);
      line-height: 1.7;
      font-size: 0.9375rem;
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-disclaimer-content {
        gap: 1.75rem;
      }

      .defensive-strategies-handball-disclaimer-header h3 {
        font-size: 1.375rem;
      }

      .defensive-strategies-handball-disclaimer-text {
        font-size: 1rem;
      }
    }

    /* Related Posts Section */
    .defensive-strategies-handball-related {
      background-color: var(--color-bg-white);
    }

    .defensive-strategies-handball-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .defensive-strategies-handball-related h2 {
      color: var(--color-text-dark);
      font-size: 1.75rem;
      text-align: center;
    }

    .defensive-strategies-handball-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .defensive-strategies-handball-related-card {
      background-color: var(--color-bg-white);
      border: 1px solid var(--color-border);
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-base);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .defensive-strategies-handball-related-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .defensive-strategies-handball-related-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex-grow: 1;
    }

    .defensive-strategies-handball-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      line-height: 1.4;
      margin: 0;
    }

    .defensive-strategies-handball-related-card p {
      color: var(--color-text-muted);
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
      flex-grow: 1;
    }

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

    .defensive-strategies-handball-related-link:hover {
      color: var(--color-primary-dark);
      transform: translateX(4px);
    }

    .defensive-strategies-handball-related-link i {
      font-size: var(--icon-sm);
    }

    @media (min-width: 768px) {
      .defensive-strategies-handball-related h2 {
        font-size: 2.25rem;
      }

      .defensive-strategies-handball-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .defensive-strategies-handball-related-body {
        padding: 1.75rem;
      }
    }

    @media (min-width: 1024px) {
      .defensive-strategies-handball-related h2 {
        font-size: 2.5rem;
      }

      .defensive-strategies-handball-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }

      .defensive-strategies-handball-related-body {
        padding: 2rem;
      }

      .defensive-strategies-handball-related-content {
        gap: 3rem;
      }
    }

/* Post Page 2 Styles */
/* Post Shooting Techniques Handball - Complete Isolation */
.post-shooting-techniques-handball {
  width: 100%;
}

/* Breadcrumbs Section */
.shooting-techniques-handball-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.shooting-techniques-handball-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.shooting-techniques-handball-breadcrumbs a {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-base);
}

.shooting-techniques-handball-breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.shooting-techniques-handball-breadcrumbs span {
  color: var(--color-text-muted);
}

.shooting-techniques-handball-separator {
  color: var(--color-border);
  margin: 0 0.25rem;
}

/* Hero Section */
.shooting-techniques-handball-hero {
  background-color: var(--color-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-hero {
    padding: 6rem 0;
  }
}

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

@media (min-width: 1024px) {
  .shooting-techniques-handball-hero-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.shooting-techniques-handball-hero h1 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-hero h1 {
    font-size: 2.875rem;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-hero h1 {
    font-size: 3.75rem;
  }
}

.shooting-techniques-handball-lead {
  color: #e0e0e0;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-lead {
    font-size: 1.0625rem;
  }
}

.shooting-techniques-handball-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: #b0b0b0;
}

.shooting-techniques-handball-meta i {
  margin-right: 0.5rem;
  font-size: var(--icon-sm);
}

.shooting-techniques-handball-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.shooting-techniques-handball-hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* Content Section 1 */
.shooting-techniques-handball-content-1 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-1 {
    padding: 6rem 0;
  }
}

.shooting-techniques-handball-content-1 h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-1 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-1 h2 {
    font-size: 3rem;
  }
}

.shooting-techniques-handball-text-block {
  max-width: 900px;
}

.shooting-techniques-handball-content-1 p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-1 p {
    font-size: 1.0625rem;
  }
}

.shooting-techniques-handball-highlight-box {
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-highlight-box {
    padding: 2rem;
  }
}

.shooting-techniques-handball-highlight-icon {
  flex-shrink: 0;
  font-size: var(--icon-lg);
  color: var(--color-primary);
  display: flex;
  align-items: flex-start;
}

.shooting-techniques-handball-highlight-text {
  flex: 1;
}

.shooting-techniques-handball-highlight-box h4 {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.shooting-techniques-handball-list {
  list-style: none;
  padding: 0;
}

.shooting-techniques-handball-list li {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.shooting-techniques-handball-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Content Section 2 */
.shooting-techniques-handball-content-2 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-2 {
    padding: 6rem 0;
  }
}

.shooting-techniques-handball-text-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-text-with-image {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.shooting-techniques-handball-content-2 h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-2 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-2 h2 {
    font-size: 3rem;
  }
}

.shooting-techniques-handball-content-2 h3 {
  color: var(--color-text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-2 h3 {
    font-size: 2.25rem;
  }
}

.shooting-techniques-handball-content-2 p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-2 p {
    font-size: 1.0625rem;
  }
}

.shooting-techniques-handball-numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin: 1.5rem 0;
}

.shooting-techniques-handball-numbered-list li {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
  counter-increment: step-counter;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-numbered-list li {
    font-size: 1rem;
  }
}

.shooting-techniques-handball-numbered-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 0.75rem;
}

.shooting-techniques-handball-content-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Disclaimer Section */
.shooting-techniques-handball-disclaimer {
  background-color: var(--color-secondary-light);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-disclaimer {
    padding: 4rem 0;
  }
}

.shooting-techniques-handball-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-disclaimer-content {
    gap: 2rem;
  }
}

.shooting-techniques-handball-disclaimer-icon {
  flex-shrink: 0;
  font-size: var(--icon-lg);
  color: var(--color-secondary);
  margin-top: 0.25rem;
}

.shooting-techniques-handball-disclaimer-text {
  flex: 1;
}

.shooting-techniques-handball-disclaimer h3 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.shooting-techniques-handball-disclaimer p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-disclaimer p {
    font-size: 1rem;
  }
}

.shooting-techniques-handball-disclaimer p:last-child {
  margin-bottom: 0;
}

/* Content Section 3 */
.shooting-techniques-handball-content-3 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-3 {
    padding: 6rem 0;
  }
}

.shooting-techniques-handball-content-3 h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-3 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-3 h2 {
    font-size: 3rem;
  }
}

.shooting-techniques-handball-content-3 h3 {
  color: var(--color-text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-3 h3 {
    font-size: 2.25rem;
  }
}

.shooting-techniques-handball-content-3 p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-3 p {
    font-size: 1.0625rem;
  }
}

.shooting-techniques-handball-two-column-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

.shooting-techniques-handball-card-item {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-card-item {
    padding: 2rem;
  }
}

.shooting-techniques-handball-card-icon {
  font-size: var(--icon-lg);
  color: var(--color-primary);
}

.shooting-techniques-handball-card-item h4 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.shooting-techniques-handball-card-item p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Content Section 4 */
.shooting-techniques-handball-content-4 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-4 {
    padding: 6rem 0;
  }
}

.shooting-techniques-handball-content-4 h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-4 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-4 h2 {
    font-size: 3rem;
  }
}

.shooting-techniques-handball-content-4 p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-4 p {
    font-size: 1.0625rem;
  }
}

.shooting-techniques-handball-shot-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

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

@media (min-width: 1024px) {
  .shooting-techniques-handball-shot-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shooting-techniques-handball-shot-type-item {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .shooting-techniques-handball-shot-type-item {
    padding: 2rem;
  }
}

.shooting-techniques-handball-shot-type-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.shooting-techniques-handball-shot-type-item h4 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.shooting-techniques-handball-shot-type-item h4 i {
  color: var(--color-primary);
  font-size: var(--icon-md);
}

.shooting-techniques-handball-shot-type-item p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Content Section 5 */
.shooting-techniques-handball-content-5 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-5 {
    padding: 6rem 0;
  }
}

.shooting-techniques-handball-content-5 h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-content-5 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-5 h2 {
    font-size: 3rem;
  }
}

.shooting-techniques-handball-content-5 p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-content-5 p {
    font-size: 1.0625rem;
  }
}

.shooting-techniques-handball-progression-box {
  background-color: var(--color-primary-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-primary);
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-progression-box {
    padding: 2.5rem;
  }
}

.shooting-techniques-handball-progression-box h3 {
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.shooting-techniques-handball-progression-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.shooting-techniques-handball-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-step {
    gap: 2rem;
  }
}

.shooting-techniques-handball-step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
}

.shooting-techniques-handball-step-content {
  flex: 1;
}

.shooting-techniques-handball-step-content h4 {
  color: var(--color-primary-dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.shooting-techniques-handball-step-content p {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Related Posts Section */
.shooting-techniques-handball-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-related {
    padding: 6rem 0;
  }
}

.shooting-techniques-handball-related h2 {
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-related h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-related h2 {
    font-size: 3rem;
  }
}

.shooting-techniques-handball-related-subtitle {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-related-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

.shooting-techniques-handball-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .shooting-techniques-handball-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.shooting-techniques-handball-related-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.shooting-techniques-handball-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.shooting-techniques-handball-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-border);
}

.shooting-techniques-handball-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.shooting-techniques-handball-related-card:hover .shooting-techniques-handball-related-img {
  transform: scale(1.05);
}

.shooting-techniques-handball-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .shooting-techniques-handball-related-card-body {
    padding: 2rem;
  }
}

.shooting-techniques-handball-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .shooting-techniques-handball-related-card h3 {
    font-size: 1.375rem;
  }
}

.shooting-techniques-handball-related-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.shooting-techniques-handball-related-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.shooting-techniques-handball-related-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.shooting-techniques-handball-related-link i {
  font-size: var(--icon-sm);
}

/* Post Page 3 Styles */
/* Post Goalkeeper Training Handball Isolation */
  .post-goalkeeper-training-handball {
    width: 100%;
  }

  /* Breadcrumbs */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-breadcrumbs {
    background-color: var(--color-bg-light);
    padding: 1rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-breadcrumbs-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-breadcrumb-link {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-base);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-breadcrumb-link:hover {
    color: var(--color-primary-dark);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-breadcrumb-separator {
    color: var(--color-text-muted);
    font-size: 0.75rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-breadcrumb-current {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-breadcrumbs {
      padding: 1.5rem 0;
    }
  }

  /* Hero Section */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-hero {
    background-color: var(--color-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-title {
    color: var(--color-text-light);
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-lead {
    color: #d0d8e0;
    font-size: 1rem;
    line-height: 1.7;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-read-time {
    color: #a0aabb;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-read-time i {
    font-size: 1rem;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-hero {
      padding: 5rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-title {
      font-size: 2.75rem;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-lead {
      font-size: 1.0625rem;
      max-width: 700px;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-hero {
      padding: 6rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-title {
      font-size: 3.5rem;
    }
  }

  /* Section One */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-one {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-content-one {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-title {
    color: var(--color-text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-body-text {
    color: var(--color-text-dark);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-image-one {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-one {
      padding: 4rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-content-one {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-title {
      font-size: 2rem;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-body-text {
      font-size: 1rem;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-image-one {
      max-height: 350px;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-one {
      padding: 5rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-title {
      font-size: 2.25rem;
    }
  }

  /* Section Two */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-two {
    background-color: var(--color-secondary-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-content-two {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-two .goalkeeper-training-handball-section-title {
    color: var(--color-secondary);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-two .goalkeeper-training-handball-body-text {
    color: var(--color-text-dark);
  }

  /* Highlight Box */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-box {
    background-color: var(--color-bg-white);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-text {
    flex: 1;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-title {
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-list {
    list-style: none;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-list li {
    color: var(--color-text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-list li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-size: 1rem;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-two {
      padding: 4rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-highlight-box {
      padding: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-two {
      padding: 5rem 0;
    }
  }

  /* Disclaimer Section */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-disclaimer {
    background-color: var(--color-accent);
    padding: 2.5rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-disclaimer-content {
    display: flex;
    gap: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-disclaimer-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    font-size: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-disclaimer-text {
    flex: 1;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-disclaimer-title {
    color: var(--color-text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-disclaimer-body {
    color: var(--color-text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-disclaimer {
      padding: 3rem 0;
    }
  }

  /* Section Three */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-three {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-content-three {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-three .goalkeeper-training-handball-section-title {
    color: var(--color-text-dark);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-three .goalkeeper-training-handball-body-text {
    color: var(--color-text-dark);
  }

  /* Numbered List */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-numbered-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-list-item {
    display: flex;
    gap: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-list-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-list-content {
    flex: 1;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-list-title {
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-list-description {
    color: var(--color-text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-three {
      padding: 4rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-numbered-list {
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-three {
      padding: 5rem 0;
    }
  }

  /* Section Four */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-four {
    background-color: #f0f4f8;
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-content-four {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-four .goalkeeper-training-handball-section-title {
    color: var(--color-secondary);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-four .goalkeeper-training-handball-body-text {
    color: var(--color-text-dark);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-image-four {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-four {
      padding: 4rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-content-four {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-image-four {
      grid-column: 2;
      max-height: 350px;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-four {
      padding: 5rem 0;
    }
  }

  /* Section Five */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-five {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-content-five {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-section-five .goalkeeper-training-handball-section-title {
    color: var(--color-text-dark);
  }

  /* Two Column Layout */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-column-item {
    background-color: var(--color-secondary-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-primary);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-column-title {
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-column-title i {
    font-size: 1.25rem;
    color: var(--color-primary);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-column-text {
    color: var(--color-text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-five {
      padding: 4rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-two-column {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-section-five {
      padding: 5rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-two-column {
      gap: 2.5rem;
    }
  }

  /* Conclusion Section */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion {
    background-color: var(--color-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-title {
    color: var(--color-text-light);
    font-size: 2rem;
    text-align: center;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-card-title {
    color: var(--color-text-light);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-card-text {
    color: #d0d8e0;
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion {
      padding: 4rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-title {
      font-size: 2.25rem;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion {
      padding: 5rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-conclusion-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Related Posts Section */
  .post-goalkeeper-training-handball .goalkeeper-training-handball-related {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-title {
    color: var(--color-text-dark);
    font-size: 1.75rem;
    text-align: center;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    text-decoration: none;
  }

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

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card-title {
    color: var(--color-text-dark);
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: var(--font-weight-semibold);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card-description {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    transition: all var(--transition-base);
  }

  .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card:hover .goalkeeper-training-handball-related-card-link {
    gap: 0.75rem;
    color: var(--color-primary-dark);
  }

  @media (min-width: 768px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-related {
      padding: 4rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-related-title {
      font-size: 2rem;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card-content {
      padding: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .post-goalkeeper-training-handball .goalkeeper-training-handball-related {
      padding: 5rem 0;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .post-goalkeeper-training-handball .goalkeeper-training-handball-related-card-content {
      padding: 2rem;
    }
  }

/* Post Page 4 Styles */
.post-athletic-development-handball {
    background-color: var(--color-bg-white);
  }

  /* Breadcrumbs */
  .post-athletic-development-handball .athletic-development-handball-breadcrumbs {
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-breadcrumbs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
  }

  .post-athletic-development-handball .athletic-development-handball-breadcrumbs a {
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-base);
  }

  .post-athletic-development-handball .athletic-development-handball-breadcrumbs a:hover {
    color: var(--color-primary-dark);
  }

  .post-athletic-development-handball .athletic-development-handball-breadcrumbs span {
    color: var(--color-text-muted);
  }

  .post-athletic-development-handball .athletic-development-handball-breadcrumbs-separator {
    color: var(--color-text-muted);
    margin: 0 0.25rem;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-breadcrumbs {
      padding: 1.5rem 0;
    }
  }

  /* Hero Section */
  .post-athletic-development-handball .athletic-development-handball-hero {
    background-color: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    background: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }

  .post-athletic-development-handball .athletic-development-handball-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-athletic-development-handball .athletic-development-handball-hero h1 {
    color: var(--color-secondary);
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .post-athletic-development-handball .athletic-development-handball-lead {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
  }

  .post-athletic-development-handball .athletic-development-handball-meta {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    font-size: 0.875rem;
  }

  .post-athletic-development-handball .athletic-development-handball-read-time {
    color: var(--color-text-muted);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .post-athletic-development-handball .athletic-development-handball-read-time i {
    color: var(--color-primary);
    font-size: var(--icon-sm);
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-hero {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-hero h1 {
      font-size: 2.875rem;
    }

    .post-athletic-development-handball .athletic-development-handball-lead {
      font-size: 1.125rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-hero {
      padding: 6rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-hero h1 {
      font-size: 3.5rem;
    }

    .post-athletic-development-handball .athletic-development-handball-lead {
      font-size: 1.25rem;
    }
  }

  /* Content Section 1 */
  .post-athletic-development-handball .athletic-development-handball-content-1 {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-content-1-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-athletic-development-handball .athletic-development-handball-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-1 h2 {
    color: var(--color-secondary);
    font-size: 1.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-1 p {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .post-athletic-development-handball .athletic-development-handball-section-image {
    width: 100%;
    max-height: 350px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-content-1 {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-content-1-content {
      gap: 2.5rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-1 h2 {
      font-size: 2.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-1 p {
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-content-1 {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-content-1-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .post-athletic-development-handball .athletic-development-handball-text-block {
      grid-column: 1;
    }

    .post-athletic-development-handball .athletic-development-handball-section-image {
      grid-column: 2;
      max-height: 400px;
    }

    .post-athletic-development-handball .athletic-development-handball-content-1 h2 {
      font-size: 2.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-1 p {
      font-size: 1.0625rem;
    }
  }

  /* Content Section 2 */
  .post-athletic-development-handball .athletic-development-handball-content-2 {
    background-color: var(--color-secondary-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-content-2-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-2 h2 {
    color: var(--color-secondary);
    font-size: 1.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-2 h3 {
    color: var(--color-secondary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-2 p {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .post-athletic-development-handball .athletic-development-handball-highlights {
    background-color: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .post-athletic-development-handball .athletic-development-handball-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
  }

  .post-athletic-development-handball .athletic-development-handball-feature-list li {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .post-athletic-development-handball .athletic-development-handball-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
  }

  .post-athletic-development-handball .athletic-development-handball-list-icon i {
    font-size: var(--icon-md);
  }

  .post-athletic-development-handball .athletic-development-handball-feature-list li span:last-child {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-content-2 {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-content-2 h2 {
      font-size: 2.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-2 h3 {
      font-size: 1.5rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-2 p {
      font-size: 1rem;
    }

    .post-athletic-development-handball .athletic-development-handball-highlights {
      padding: 2.5rem;
    }

    .post-athletic-development-handball .athletic-development-handball-feature-list li span:last-child {
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-content-2 {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-content-2 h2 {
      font-size: 2.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-2 p {
      font-size: 1.0625rem;
    }
  }

  /* Disclaimer Section */
  .post-athletic-development-handball .athletic-development-handball-disclaimer {
    background-color: #f5f5f5;
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-disclaimer-content {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: var(--color-bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-accent);
  }

  .post-athletic-development-handball .athletic-development-handball-disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--color-accent);
    flex-shrink: 0;
  }

  .post-athletic-development-handball .athletic-development-handball-disclaimer-icon i {
    font-size: var(--icon-md);
  }

  .post-athletic-development-handball .athletic-development-handball-disclaimer-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-athletic-development-handball .athletic-development-handball-disclaimer h3 {
    color: var(--color-secondary);
    font-size: 1.125rem;
  }

  .post-athletic-development-handball .athletic-development-handball-disclaimer p {
    color: var(--color-text-dark);
    font-size: 0.875rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-disclaimer {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-disclaimer-content {
      padding: 2rem;
      gap: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-disclaimer h3 {
      font-size: 1.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-disclaimer p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-disclaimer {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-disclaimer-content {
      padding: 2.5rem;
    }
  }

  /* Content Section 3 */
  .post-athletic-development-handball .athletic-development-handball-content-3 {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-content-3-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-3 h2 {
    color: var(--color-secondary);
    font-size: 1.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-3 p {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .post-athletic-development-handball .athletic-development-handball-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-athletic-development-handball .athletic-development-handball-training-method {
    background-color: var(--color-secondary-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border-top: 3px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-athletic-development-handball .athletic-development-handball-method-header {
    display: flex;
    flex-direction: column;
  }

  .post-athletic-development-handball .athletic-development-handball-training-method h4 {
    color: var(--color-secondary);
    font-size: 1.125rem;
  }

  .post-athletic-development-handball .athletic-development-handball-training-method p {
    color: var(--color-text-dark);
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-content-3 {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-grid-2 {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-3 h2 {
      font-size: 2.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-3 p {
      font-size: 1rem;
    }

    .post-athletic-development-handball .athletic-development-handball-training-method {
      padding: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-training-method p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-content-3 {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-content-3 h2 {
      font-size: 2.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-3 p {
      font-size: 1.0625rem;
    }
  }

  /* Content Section 4 */
  .post-athletic-development-handball .athletic-development-handball-content-4 {
    background-color: var(--color-secondary-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-content-4-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-4 h2 {
    color: var(--color-secondary);
    font-size: 1.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-4 p {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .post-athletic-development-handball .athletic-development-handball-prevention-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-athletic-development-handball .athletic-development-handball-prevention-card {
    background-color: var(--color-bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
  }

  .post-athletic-development-handball .athletic-development-handball-prevention-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .post-athletic-development-handball .athletic-development-handball-prevention-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 55, 42, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--color-primary);
  }

  .post-athletic-development-handball .athletic-development-handball-prevention-icon i {
    font-size: var(--icon-lg);
  }

  .post-athletic-development-handball .athletic-development-handball-prevention-card h4 {
    color: var(--color-secondary);
    font-size: 1.125rem;
  }

  .post-athletic-development-handball .athletic-development-handball-prevention-card p {
    color: var(--color-text-dark);
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-content-4 {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-prevention-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-4 h2 {
      font-size: 2.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-4 p {
      font-size: 1rem;
    }

    .post-athletic-development-handball .athletic-development-handball-prevention-card {
      padding: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-prevention-card p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-content-4 {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-prevention-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-4 h2 {
      font-size: 2.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-4 p {
      font-size: 1.0625rem;
    }
  }

  /* Content Section 5 */
  .post-athletic-development-handball .athletic-development-handball-content-5 {
    background-color: var(--color-bg-white);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-content-5-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-5 h2 {
    color: var(--color-secondary);
    font-size: 1.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-content-5 p {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .post-athletic-development-handball .athletic-development-handball-periodization-phases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-athletic-development-handball .athletic-development-handball-phase {
    background-color: var(--color-secondary-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 4px solid var(--color-primary);
  }

  .post-athletic-development-handball .athletic-development-handball-phase h4 {
    color: var(--color-secondary);
    font-size: 1.125rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-phase-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: 50%;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
  }

  .post-athletic-development-handball .athletic-development-handball-phase p {
    color: var(--color-text-dark);
    font-size: 0.9rem;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-content-5 {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-periodization-phases {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-5 h2 {
      font-size: 2.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-5 p {
      font-size: 1rem;
    }

    .post-athletic-development-handball .athletic-development-handball-phase {
      padding: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-phase p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-content-5 {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-periodization-phases {
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-5 h2 {
      font-size: 2.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-content-5 p {
      font-size: 1.0625rem;
    }
  }

  /* Conclusion Section */
  .post-athletic-development-handball .athletic-development-handball-conclusion {
    background-color: var(--color-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-conclusion-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .post-athletic-development-handball .athletic-development-handball-conclusion h2 {
    color: var(--color-text-light);
    font-size: 1.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-conclusion p {
    color: #e8f0f7;
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-conclusion {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-conclusion h2 {
      font-size: 2.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-conclusion p {
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-conclusion {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-conclusion h2 {
      font-size: 2.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-conclusion p {
      font-size: 1.0625rem;
    }
  }

  /* Related Posts Section */
  .post-athletic-development-handball .athletic-development-handball-related {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-related-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .post-athletic-development-handball .athletic-development-handball-related h2 {
    color: var(--color-secondary);
    font-size: 1.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .post-athletic-development-handball .athletic-development-handball-related-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .post-athletic-development-handball .athletic-development-handball-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
  }

  .post-athletic-development-handball .athletic-development-handball-related-card:hover .athletic-development-handball-related-card-image img {
    transform: scale(1.05);
  }

  .post-athletic-development-handball .athletic-development-handball-related-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .post-athletic-development-handball .athletic-development-handball-related-card h3 {
    color: var(--color-secondary);
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .post-athletic-development-handball .athletic-development-handball-related-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .post-athletic-development-handball .athletic-development-handball-related-link {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    align-self: flex-start;
  }

  .post-athletic-development-handball .athletic-development-handball-related-link:hover {
    color: var(--color-primary-dark);
    gap: 0.75rem;
  }

  .post-athletic-development-handball .athletic-development-handball-related-link i {
    font-size: var(--icon-sm);
  }

  @media (min-width: 768px) {
    .post-athletic-development-handball .athletic-development-handball-related {
      padding: 4rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-related h2 {
      font-size: 2.25rem;
    }

    .post-athletic-development-handball .athletic-development-handball-related-card-content {
      padding: 1.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-related-card h3 {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .post-athletic-development-handball .athletic-development-handball-related {
      padding: 5rem 0;
    }

    .post-athletic-development-handball .athletic-development-handball-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .post-athletic-development-handball .athletic-development-handball-related h2 {
      font-size: 2.75rem;
    }

    .post-athletic-development-handball .athletic-development-handball-related-card-content {
      padding: 2rem;
    }

    .post-athletic-development-handball .athletic-development-handball-related-card h3 {
      font-size: 1.375rem;
    }

    .post-athletic-development-handball .athletic-development-handball-related-card p {
      font-size: 0.9rem;
    }
  }

/* Post Page 5 Styles */
.post-team-coordination-handball {
      width: 100%;
    }

    /* Breadcrumbs Section */
    .post-team-coordination-handball .team-coordination-handball-breadcrumbs {
      background-color: var(--color-bg-light);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .post-team-coordination-handball .team-coordination-handball-breadcrumbs-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .post-team-coordination-handball .team-coordination-handball-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: var(--font-weight-medium);
      transition: color var(--transition-base);
    }

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

    .post-team-coordination-handball .team-coordination-handball-breadcrumbs span {
      color: var(--color-text-muted);
      font-size: 0.875rem;
      font-weight: var(--font-weight-medium);
    }

    .post-team-coordination-handball .team-coordination-handball-breadcrumbs-divider {
      color: var(--color-border-dark);
      margin: 0 0.25rem;
    }

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

    /* Hero Section */
    .post-team-coordination-handball .team-coordination-handball-hero {
      background-color: var(--color-secondary);
      color: var(--color-text-light);
      padding: 4rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-team-coordination-handball .team-coordination-handball-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    .post-team-coordination-handball .team-coordination-handball-hero h1 {
      font-size: 2.25rem;
      color: var(--color-text-light);
      line-height: 1.2;
      letter-spacing: -0.5px;
    }

    .post-team-coordination-handball .team-coordination-handball-hero-lead {
      font-size: 1rem;
      line-height: 1.8;
      color: #e8f0f7;
      font-weight: var(--font-weight-regular);
    }

    .post-team-coordination-handball .team-coordination-handball-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 2rem;
      flex-wrap: wrap;
      font-size: 0.875rem;
      color: #b0c4d6;
    }

    .post-team-coordination-handball .team-coordination-handball-hero-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    .post-team-coordination-handball .team-coordination-handball-hero-meta-item i {
      font-size: var(--icon-md);
    }

    @media (min-width: 768px) {
      .post-team-coordination-handball .team-coordination-handball-hero {
        padding: 6rem 0;
      }

      .post-team-coordination-handball .team-coordination-handball-hero h1 {
        font-size: 2.875rem;
      }

      .post-team-coordination-handball .team-coordination-handball-hero-lead {
        font-size: 1.125rem;
      }
    }

    @media (min-width: 1024px) {
      .post-team-coordination-handball .team-coordination-handball-hero {
        padding: 8rem 0;
      }

      .post-team-coordination-handball .team-coordination-handball-hero h1 {
        font-size: 3.5rem;
      }

      .post-team-coordination-handball .team-coordination-handball-hero-lead {
        font-size: 1.25rem;
      }
    }

    /* Content Section 1 */
    .post-team-coordination-handball .team-coordination-handball-content-1 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    .post-team-coordination-handball .team-coordination-handball-content-1-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-team-coordination-handball .team-coordination-handball-content-1 h2 {
      color: var(--color-secondary);
      font-size: 1.875rem;
      line-height: 1.3;
    }

    .post-team-coordination-handball .team-coordination-handball-content-1 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    .post-team-coordination-handball .team-coordination-handball-content-1 ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-team-coordination-handball .team-coordination-handball-content-1 li {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.7;
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    .post-team-coordination-handball .team-coordination-handball-content-1 li:before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--color-primary);
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-1 h2 {
        font-size: 2.25rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-1 p {
        font-size: 1rem;
      }
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-1 h2 {
        font-size: 2.75rem;
      }
    }

    /* Content Section 2 - With Image */
    .post-team-coordination-handball .team-coordination-handball-content-2 {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    .post-team-coordination-handball .team-coordination-handball-content-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-team-coordination-handball .team-coordination-handball-content-2 h2 {
      color: var(--color-secondary);
      font-size: 1.875rem;
      line-height: 1.3;
    }

    .post-team-coordination-handball .team-coordination-handball-content-2 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    .post-team-coordination-handball .team-coordination-handball-content-2-image {
      width: 100%;
      height: 300px;
      border-radius: var(--border-radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-2 h2 {
        font-size: 2.25rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-2 p {
        font-size: 1rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-2-image {
        height: 350px;
      }
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-2-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }

      .post-team-coordination-handball .team-coordination-handball-content-2 h2 {
        font-size: 2.75rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-2-image {
        height: 400px;
      }
    }

    /* Highlight Box */
    .post-team-coordination-handball .team-coordination-handball-highlight-box {
      background-color: var(--color-primary-light);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--border-radius-md);
      margin: 1.5rem 0;
    }

    .post-team-coordination-handball .team-coordination-handball-highlight-box h4 {
      color: var(--color-primary-dark);
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
    }

    .post-team-coordination-handball .team-coordination-handball-highlight-box p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-team-coordination-handball .team-coordination-handball-highlight-box {
        padding: 2rem;
      }
    }

    /* Content Section 3 */
    .post-team-coordination-handball .team-coordination-handball-content-3 {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
    }

    .post-team-coordination-handball .team-coordination-handball-content-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-team-coordination-handball .team-coordination-handball-content-3 h2 {
      color: var(--color-secondary);
      font-size: 1.875rem;
      line-height: 1.3;
    }

    .post-team-coordination-handball .team-coordination-handball-content-3 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    .post-team-coordination-handball .team-coordination-handball-steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .post-team-coordination-handball .team-coordination-handball-step-item {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .post-team-coordination-handball .team-coordination-handball-step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      background-color: var(--color-secondary);
      color: var(--color-text-light);
      border-radius: 50%;
      font-weight: var(--font-weight-bold);
      flex-shrink: 0;
      font-size: 1.125rem;
    }

    .post-team-coordination-handball .team-coordination-handball-step-content h4 {
      color: var(--color-secondary);
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    .post-team-coordination-handball .team-coordination-handball-step-content p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.7;
      margin: 0;
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-3 h2 {
        font-size: 2.25rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-3 p {
        font-size: 1rem;
      }
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-3 h2 {
        font-size: 2.75rem;
      }
    }

    /* Content Section 4 */
    .post-team-coordination-handball .team-coordination-handball-content-4 {
      background-color: var(--color-secondary-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    .post-team-coordination-handball .team-coordination-handball-content-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-team-coordination-handball .team-coordination-handball-content-4 h2 {
      color: var(--color-secondary);
      font-size: 1.875rem;
      line-height: 1.3;
    }

    .post-team-coordination-handball .team-coordination-handball-content-4 p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
    }

    .post-team-coordination-handball .team-coordination-handball-content-4-image {
      width: 100%;
      height: 300px;
      border-radius: var(--border-radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-4 h2 {
        font-size: 2.25rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-4 p {
        font-size: 1rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-4-image {
        height: 350px;
      }
    }

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

      .post-team-coordination-handball .team-coordination-handball-content-4 h2 {
        font-size: 2.75rem;
      }

      .post-team-coordination-handball .team-coordination-handball-content-4-image {
        height: 400px;
      }
    }

    /* Disclaimer Section */
    .post-team-coordination-handball .team-coordination-handball-disclaimer {
      background-color: var(--color-bg-white);
      padding: 3rem 0;
      overflow: hidden;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    .post-team-coordination-handball .team-coordination-handball-disclaimer-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    .post-team-coordination-handball .team-coordination-handball-disclaimer-header {
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: flex-start;
    }

    .post-team-coordination-handball .team-coordination-handball-disclaimer-icon {
      color: var(--color-accent);
      font-size: var(--icon-lg);
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .post-team-coordination-handball .team-coordination-handball-disclaimer h3 {
      color: var(--color-secondary);
      font-size: 1.25rem;
      margin: 0;
    }

    .post-team-coordination-handball .team-coordination-handball-disclaimer p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.8;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-team-coordination-handball .team-coordination-handball-disclaimer {
        padding: 4rem 0;
      }

      .post-team-coordination-handball .team-coordination-handball-disclaimer p {
        font-size: 0.9375rem;
      }
    }

    @media (min-width: 1024px) {
      .post-team-coordination-handball .team-coordination-handball-disclaimer {
        padding: 5rem 0;
      }
    }

    /* Related Posts Section */
    .post-team-coordination-handball .team-coordination-handball-related {
      background-color: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

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

    .post-team-coordination-handball .team-coordination-handball-related h2 {
      color: var(--color-secondary);
      font-size: 1.875rem;
      line-height: 1.3;
      text-align: center;
      margin-bottom: 1rem;
    }

    .post-team-coordination-handball .team-coordination-handball-related-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

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

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

    .post-team-coordination-handball .team-coordination-handball-related-card-image {
      width: 100%;
      height: 200px;
      background-color: var(--color-secondary-light);
      border-radius: var(--border-radius-md);
      object-fit: cover;
      display: block;
    }

    .post-team-coordination-handball .team-coordination-handball-related-card h3 {
      color: var(--color-secondary);
      font-size: 1.125rem;
      line-height: 1.4;
      margin: 0;
    }

    .post-team-coordination-handball .team-coordination-handball-related-card p {
      color: var(--color-text-dark);
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
    }

    .post-team-coordination-handball .team-coordination-handball-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: var(--font-weight-semibold);
      font-size: 0.875rem;
      margin-top: 0.5rem;
      transition: color var(--transition-base);
    }

    .post-team-coordination-handball .team-coordination-handball-related-card-link:hover {
      color: var(--color-primary-dark);
    }

    .post-team-coordination-handball .team-coordination-handball-related-card-link i {
      font-size: var(--icon-sm);
    }

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

      .post-team-coordination-handball .team-coordination-handball-related h2 {
        font-size: 2.25rem;
      }

      .post-team-coordination-handball .team-coordination-handball-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .post-team-coordination-handball .team-coordination-handball-related-card {
        padding: 1.5rem;
      }
    }

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

      .post-team-coordination-handball .team-coordination-handball-related h2 {
        font-size: 2.75rem;
      }

      .post-team-coordination-handball .team-coordination-handball-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }

      .post-team-coordination-handball .team-coordination-handball-related-card {
        padding: 2rem;
      }
    }

/* Post Page 6 Styles */
/* ============================================
   FAST-BREAK TACTICS HANDBALL POST STYLES
   Complete CSS Isolation for Post Page
   ============================================ */

.post-fast-break-tactics-handball {
  width: 100%;
}

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

.fast-break-tactics-handball-breadcrumbs {
  background-color: var(--color-bg-light);
  padding: 1rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.fast-break-tactics-handball-breadcrumb-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-base);
}

.fast-break-tactics-handball-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.fast-break-tactics-handball-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.fast-break-tactics-handball-breadcrumb-current {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-breadcrumbs {
    padding: 1.5rem 0;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-breadcrumbs {
    padding: 2rem 0;
  }
}

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

.fast-break-tactics-handball-hero {
  background-color: #1a2a3a;
  padding: 3rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.fast-break-tactics-handball-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.fast-break-tactics-handball-hero-title {
  color: var(--color-text-light);
  font-size: 2rem;
  line-height: 1.2;
}

.fast-break-tactics-handball-hero-lead {
  color: #d0d0d0;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.fast-break-tactics-handball-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.fast-break-tactics-handball-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: #a0a0a0;
  font-size: 0.8rem;
}

.fast-break-tactics-handball-meta-item i {
  font-size: var(--icon-sm);
  color: var(--color-primary);
}

.fast-break-tactics-handball-hero-image {
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fast-break-tactics-handball-hero-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-hero {
    padding: 5rem 0;
  }

  .fast-break-tactics-handball-hero-content {
    flex-direction: row;
    gap: 3rem;
  }

  .fast-break-tactics-handball-hero-text {
    flex: 1;
    text-align: left;
  }

  .fast-break-tactics-handball-hero-title {
    font-size: 2.5rem;
  }

  .fast-break-tactics-handball-hero-lead {
    text-align: left;
    margin: 0;
  }

  .fast-break-tactics-handball-hero-meta {
    justify-content: flex-start;
  }

  .fast-break-tactics-handball-hero-image {
    flex: 1;
    min-height: 350px;
  }

  .fast-break-tactics-handball-hero-img {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-hero {
    padding: 6rem 0;
  }

  .fast-break-tactics-handball-hero-title {
    font-size: 3.5rem;
  }

  .fast-break-tactics-handball-hero-lead {
    font-size: 1rem;
  }

  .fast-break-tactics-handball-hero-img {
    height: 400px;
  }
}

/* ============================================
   SECTION 1: FUNDAMENTALS
   ============================================ */

.fast-break-tactics-handball-section-1 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-content-1 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fast-break-tactics-handball-section-1-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
}

.fast-break-tactics-handball-section-1-intro {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

.fast-break-tactics-handball-section-1-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.fast-break-tactics-handball-key-concept {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.fast-break-tactics-handball-key-concept:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fast-break-tactics-handball-concept-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 55, 42, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--color-primary);
  font-size: var(--icon-md);
}

.fast-break-tactics-handball-concept-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
}

.fast-break-tactics-handball-concept-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.fast-break-tactics-handball-section-1-conclusion {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 1.5rem;
  background-color: #f0f4f8;
  border-radius: var(--border-radius-md);
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-section-1 {
    padding: 5rem 0;
  }

  .fast-break-tactics-handball-content-1 {
    gap: 2.5rem;
  }

  .fast-break-tactics-handball-section-1-title {
    font-size: 2.25rem;
  }

  .fast-break-tactics-handball-section-1-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .fast-break-tactics-handball-key-concept {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-section-1 {
    padding: 6rem 0;
  }

  .fast-break-tactics-handball-section-1-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* ============================================
   SECTION 2: PASSING COMBINATIONS
   ============================================ */

.fast-break-tactics-handball-section-2 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f7 100%);
  padding: 3rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-content-2 {
  display: flex;
  flex-direction: column;
}

.fast-break-tactics-handball-section-2-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fast-break-tactics-handball-section-2-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fast-break-tactics-handball-section-2-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
}

.fast-break-tactics-handball-section-2-para {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

.fast-break-tactics-handball-section-2-subtitle {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-top: 1rem;
}

.fast-break-tactics-handball-passing-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.fast-break-tactics-handball-list-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.fast-break-tactics-handball-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

.fast-break-tactics-handball-list-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.fast-break-tactics-handball-list-text strong {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
}

.fast-break-tactics-handball-section-2-para-closing {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 1.5rem;
  background-color: rgba(212, 55, 42, 0.05);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
}

.fast-break-tactics-handball-section-2-image {
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fast-break-tactics-handball-section-2-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-section-2 {
    padding: 5rem 0;
  }

  .fast-break-tactics-handball-section-2-layout {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .fast-break-tactics-handball-section-2-text {
    flex: 1;
  }

  .fast-break-tactics-handball-section-2-image {
    flex: 0 0 45%;
    min-height: 350px;
  }

  .fast-break-tactics-handball-section-2-img {
    height: 350px;
  }

  .fast-break-tactics-handball-section-2-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-section-2 {
    padding: 6rem 0;
  }

  .fast-break-tactics-handball-section-2-image {
    flex: 0 0 48%;
  }

  .fast-break-tactics-handball-section-2-img {
    height: 400px;
  }
}

/* ============================================
   SECTION 3: COUNTER-ATTACKS
   ============================================ */

.fast-break-tactics-handball-section-3 {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-content-3 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fast-break-tactics-handball-section-3-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
}

.fast-break-tactics-handball-section-3-intro {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

.fast-break-tactics-handball-section-3-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.fast-break-tactics-handball-highlight-box {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border-top: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

.fast-break-tactics-handball-highlight-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fast-break-tactics-handball-highlight-box-1 {
  border-top-color: var(--color-primary);
}

.fast-break-tactics-handball-highlight-box-2 {
  border-top-color: #2563eb;
}

.fast-break-tactics-handball-highlight-box-3 {
  border-top-color: var(--color-accent);
}

.fast-break-tactics-handball-highlight-box-4 {
  border-top-color: #10b981;
}

.fast-break-tactics-handball-box-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.fast-break-tactics-handball-box-title i {
  font-size: var(--icon-md);
}

.fast-break-tactics-handball-highlight-box-1 .fast-break-tactics-handball-box-title i {
  color: var(--color-primary);
}

.fast-break-tactics-handball-highlight-box-2 .fast-break-tactics-handball-box-title i {
  color: #2563eb;
}

.fast-break-tactics-handball-highlight-box-3 .fast-break-tactics-handball-box-title i {
  color: var(--color-accent);
}

.fast-break-tactics-handball-highlight-box-4 .fast-break-tactics-handball-box-title i {
  color: #10b981;
}

.fast-break-tactics-handball-box-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.fast-break-tactics-handball-section-3-closing {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: var(--border-radius-md);
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-section-3 {
    padding: 5rem 0;
  }

  .fast-break-tactics-handball-content-3 {
    gap: 2.5rem;
  }

  .fast-break-tactics-handball-section-3-title {
    font-size: 2.25rem;
  }

  .fast-break-tactics-handball-section-3-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .fast-break-tactics-handball-highlight-box {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-section-3 {
    padding: 6rem 0;
  }

  .fast-break-tactics-handball-section-3-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */

.fast-break-tactics-handball-disclaimer {
  background-color: #f0f7ff;
  padding: 2.5rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-disclaimer-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.fast-break-tactics-handball-disclaimer-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: var(--border-radius-sm);
  font-size: var(--icon-md);
}

.fast-break-tactics-handball-disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.fast-break-tactics-handball-disclaimer-title {
  color: var(--color-text-dark);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

.fast-break-tactics-handball-disclaimer-para {
  color: var(--color-text-dark);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-disclaimer {
    padding: 3rem 0;
  }

  .fast-break-tactics-handball-disclaimer-icon {
    width: 3rem;
    height: 3rem;
  }

  .fast-break-tactics-handball-disclaimer-para {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-disclaimer {
    padding: 4rem 0;
  }
}

/* ============================================
   SECTION 4: TRAINING DRILLS
   ============================================ */

.fast-break-tactics-handball-section-4 {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fast-break-tactics-handball-section-4-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
}

.fast-break-tactics-handball-section-4-intro {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

.fast-break-tactics-handball-drills-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.fast-break-tactics-handball-drill-item {
  background-color: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border-left: 5px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.fast-break-tactics-handball-drill-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fast-break-tactics-handball-drill-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
}

.fast-break-tactics-handball-drill-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
  font-weight: var(--font-weight-semibold);
}

.fast-break-tactics-handball-drill-description {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.fast-break-tactics-handball-section-4-closing {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 1.5rem;
  background-color: rgba(212, 55, 42, 0.05);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-section-4 {
    padding: 5rem 0;
  }

  .fast-break-tactics-handball-content-4 {
    gap: 2.5rem;
  }

  .fast-break-tactics-handball-section-4-title {
    font-size: 2.25rem;
  }

  .fast-break-tactics-handball-drills-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .fast-break-tactics-handball-drill-item {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-section-4 {
    padding: 6rem 0;
  }

  .fast-break-tactics-handball-drills-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

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

.fast-break-tactics-handball-conclusion {
  background-color: var(--color-bg-white);
  padding: 3rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fast-break-tactics-handball-conclusion-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
}

.fast-break-tactics-handball-conclusion-text {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

.fast-break-tactics-handball-key-takeaways {
  background-color: #f0f4f8;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-secondary);
}

.fast-break-tactics-handball-takeaways-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
  font-weight: var(--font-weight-semibold);
}

.fast-break-tactics-handball-takeaways-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.fast-break-tactics-handball-takeaway-item {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.6;
}

.fast-break-tactics-handball-takeaway-item::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
}

.fast-break-tactics-handball-conclusion-final {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 1.5rem;
  background-color: #fff8f5;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-conclusion {
    padding: 5rem 0;
  }

  .fast-break-tactics-handball-conclusion-content {
    gap: 2.5rem;
  }

  .fast-break-tactics-handball-conclusion-title {
    font-size: 2.25rem;
  }

  .fast-break-tactics-handball-key-takeaways {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-conclusion {
    padding: 6rem 0;
  }
}

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

.fast-break-tactics-handball-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

.fast-break-tactics-handball-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fast-break-tactics-handball-related-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  line-height: 1.3;
  text-align: center;
}

.fast-break-tactics-handball-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.fast-break-tactics-handball-related-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.fast-break-tactics-handball-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fast-break-tactics-handball-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.fast-break-tactics-handball-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fast-break-tactics-handball-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.fast-break-tactics-handball-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0;
  font-weight: var(--font-weight-semibold);
}

.fast-break-tactics-handball-related-card-description {
  color: var(--color-text-dark);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.fast-break-tactics-handball-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.fast-break-tactics-handball-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.fast-break-tactics-handball-related-link i {
  font-size: var(--icon-sm);
}

@media (min-width: 768px) {
  .fast-break-tactics-handball-related {
    padding: 5rem 0;
  }

  .fast-break-tactics-handball-related-content {
    gap: 2.5rem;
  }

  .fast-break-tactics-handball-related-title {
    font-size: 2.25rem;
  }

  .fast-break-tactics-handball-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .fast-break-tactics-handball-related-card-body {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .fast-break-tactics-handball-related {
    padding: 6rem 0;
  }

  .fast-break-tactics-handball-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .fast-break-tactics-handball-related-card-body {
    padding: 2rem;
  }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
  .fast-break-tactics-handball-hero-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .fast-break-tactics-handball-section-2-layout {
    gap: 1.5rem;
  }
}

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

:root {
  --color-primary: #d4372a;
  --color-primary-dark: #a32820;
  --color-primary-light: #f5e6e4;
  --color-secondary: #1a3a5c;
  --color-secondary-light: #e8f0f7;
  --color-accent: #f39c12;
  --color-success: #27ae60;
  --color-text-dark: #1a1a1a;
  --color-text-light: #ffffff;
  --color-text-muted: #666666;
  --color-bg-dark: #0f1419;
  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-border: #e0e0e0;
  --color-border-dark: #333333;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --shadow-sm: 0 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.15);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.2);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --icon-sm: 1.25rem;
  --icon-md: 1.75rem;
  --icon-lg: 2.5rem;
  --icon-xl: 3.5rem;
}

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

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
}

.policy-center {
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.policy-center section {
  overflow: hidden;
}

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

.policy-center-hero {
  background-color: var(--color-secondary);
  padding: 3rem 0;
}

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

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

.policy-center-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.policy-center-hero h1 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .policy-center-hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .policy-center-hero h1 {
    font-size: 3rem;
  }
}

.policy-center-hero .updated {
  font-size: 0.875rem;
  color: #d0d0d0;
  font-style: italic;
}

.policy-center-content {
  padding: 3rem 0;
}

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

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

.policy-center-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.policy-center-content-wrapper h2 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
  .policy-center-content-wrapper h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .policy-center-content-wrapper h2 {
    font-size: 2.25rem;
  }
}

.policy-center-content-wrapper h2:first-child {
  margin-top: 0;
}

.policy-center-content-wrapper p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .policy-center-content-wrapper p {
    font-size: 1rem;
  }
}

.policy-center-content-wrapper p:last-child {
  margin-bottom: 0;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info {
  background-color: var(--color-secondary-light);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
}

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

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

.contact-info h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
}

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

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  word-break: break-word;
}

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

.list-item {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.list-item:last-child {
  margin-bottom: 0;
}

.list-item-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 0.25rem;
}

.list-item-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

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

.highlight {
  background-color: #fff3cd;
  padding: 0.2rem 0.4rem;
  border-radius: var(--border-radius-sm);
  color: var(--color-text-dark);
}

@media (max-width: 767px) {
  .policy-center .container {
    padding: 0 var(--spacing-sm);
  }
}

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

  :root {
    --color-primary: #d4372a;
    --color-primary-dark: #a32820;
    --color-primary-light: #f5e6e4;
    --color-secondary: #1a3a5c;
    --color-secondary-light: #e8f0f7;
    --color-accent: #f39c12;
    --color-success: #27ae60;
    --color-text-dark: #1a1a1a;
    --color-text-light: #ffffff;
    --color-text-muted: #666666;
    --color-bg-dark: #0f1419;
    --color-bg-light: #f8f9fa;
    --color-bg-white: #ffffff;
    --color-border: #e0e0e0;
    --color-border-dark: #333333;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --shadow-sm: 0 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.15);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.2);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    --icon-sm: 1.25rem;
    --icon-md: 1.75rem;
    --icon-lg: 2.5rem;
    --icon-xl: 3.5rem;
  }

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

  body {
    font-family: var(--font-secondary);
    line-height: 1.6;
  }

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

  /* ===== THANK YOU HERO SECTION ===== */
  .thank-hero-section {
    background-color: var(--color-bg-dark);
    padding: 4rem var(--spacing-md);
    overflow: hidden;
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: scale-in 0.6s ease-out;
  }

  .thank-icon i {
    font-size: 3.5rem;
    color: var(--color-text-light);
  }

  .thank-hero-section h1 {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
    line-height: 1.2;
  }

  .thank-lead {
    font-size: 1rem;
    color: #b0b0b0;
    max-width: 600px;
    line-height: 1.8;
  }

  /* ===== THANK YOU CONTENT SECTION ===== */
  .thank-content-section {
    background-color: var(--color-bg-light);
    padding: 4rem var(--spacing-md);
    overflow: hidden;
  }

  .thank-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .thank-content-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    text-align: center;
    line-height: 1.2;
  }

  .thank-content-section > .container > .thank-content-wrapper > p {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
  }

  /* ===== BENEFITS GRID ===== */
  .thank-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
  }

  .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
  }

  .benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .benefit-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
  }

  .benefit-item h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    line-height: 1.3;
  }

  .benefit-item p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
  }

  /* ===== BUTTON STYLES ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
  }

  .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);
    box-shadow: var(--shadow-sm);
  }

  /* ===== ANIMATIONS ===== */
  @keyframes scale-in {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

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

  .thank-content-section {
    animation: fade-in 0.8s ease-out 0.3s both;
  }

  /* ===== RESPONSIVE DESIGN ===== */
  @media (min-width: 768px) {
    .thank-hero-section {
      padding: 6rem var(--spacing-md);
    }

    .thank-hero-section h1 {
      font-size: 2.75rem;
    }

    .thank-lead {
      font-size: 1.0625rem;
    }

    .thank-content-section {
      padding: 6rem var(--spacing-md);
    }

    .thank-content-section h2 {
      font-size: 2.25rem;
    }

    .thank-benefits {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-xl);
    }

    .btn {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 8rem var(--spacing-md);
    }

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

    .thank-lead {
      font-size: 1.125rem;
    }

    .thank-content-section {
      padding: 8rem var(--spacing-md);
    }

    .thank-content-section h2 {
      font-size: 2.5rem;
    }

    .thank-content-section > .container > .thank-content-wrapper > p {
      font-size: 1.0625rem;
    }

    .benefit-item h3 {
      font-size: 1.375rem;
    }

    .benefit-item p {
      font-size: 1rem;
    }
  }

  @media (max-width: 767px) {
    .thank-icon {
      width: 80px;
      height: 80px;
    }

    .thank-icon i {
      font-size: 2.75rem;
    }

    .benefit-item {
      padding: var(--spacing-md);
    }

    .benefit-item i {
      font-size: 2rem;
    }

    .benefit-item h3 {
      font-size: 1.125rem;
    }

    .benefit-item p {
      font-size: 0.875rem;
    }
  }

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

  /* ==================== ERROR PAGE STYLES ==================== */

  .error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

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

  .error-hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2332 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }

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

    .error-hero-content {
      flex-direction: row;
      justify-content: center;
      gap: 3rem;
    }
  }

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

    .error-hero-content {
      gap: 4rem;
    }
  }

  /* ==================== ILLUSTRATION ==================== */

  .error-illustration {
    position: relative;
    width: 200px;
    height: 280px;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .error-illustration {
      width: 280px;
      height: 380px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      width: 320px;
      height: 420px;
    }
  }

  /* Ball */
  .ball {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    top: 20px;
    right: 30px;
    box-shadow: 0 4px 15px rgba(212, 55, 42, 0.3);
    animation: ballBounce 3s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .ball {
      width: 70px;
      height: 70px;
      top: 30px;
      right: 40px;
    }
  }

  @keyframes ballBounce {
    0%, 100% {
      transform: translateY(0) scale(1);
    }
    50% {
      transform: translateY(-40px) scale(1.05);
    }
  }

  /* Court */
  .court {
    position: absolute;
    width: 160px;
    height: 100px;
    border: 3px solid var(--color-accent);
    border-radius: 8px;
    bottom: 60px;
    left: 20px;
    background: rgba(243, 156, 18, 0.05);
  }

  @media (min-width: 768px) {
    .court {
      width: 220px;
      height: 140px;
      bottom: 80px;
      left: 30px;
    }
  }

  .court-line {
    position: absolute;
    background-color: var(--color-accent);
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
  }

  .court-line:last-child {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
  }

  /* Player */
  .player {
    position: absolute;
    bottom: 60px;
    right: 20px;
    width: 80px;
    height: 120px;
  }

  @media (min-width: 768px) {
    .player {
      bottom: 80px;
      right: 30px;
      width: 110px;
      height: 160px;
    }
  }

  .player-head {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #d4a574;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  @media (min-width: 768px) {
    .player-head {
      width: 32px;
      height: 32px;
    }
  }

  .player-body {
    position: absolute;
    width: 18px;
    height: 35px;
    background-color: var(--color-secondary);
    border-radius: 4px;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
  }

  @media (min-width: 768px) {
    .player-body {
      width: 24px;
      height: 48px;
      top: 38px;
    }
  }

  .player-arm-left,
  .player-arm-right {
    position: absolute;
    width: 16px;
    height: 8px;
    background-color: #d4a574;
    top: 32px;
    border-radius: 4px;
  }

  @media (min-width: 768px) {
    .player-arm-left,
    .player-arm-right {
      width: 22px;
      height: 10px;
      top: 42px;
    }
  }

  .player-arm-left {
    left: -8px;
    transform: rotate(-30deg);
    animation: armSwing 2s ease-in-out infinite;
  }

  .player-arm-right {
    right: -8px;
    transform: rotate(30deg);
  }

  .player-leg-left,
  .player-leg-right {
    position: absolute;
    width: 8px;
    height: 30px;
    background-color: #1a1a1a;
    border-radius: 4px;
    top: 63px;
  }

  @media (min-width: 768px) {
    .player-leg-left,
    .player-leg-right {
      height: 40px;
      top: 86px;
    }
  }

  .player-leg-left {
    left: 35%;
    animation: legKick 2s ease-in-out infinite;
  }

  .player-leg-right {
    right: 35%;
  }

  @keyframes armSwing {
    0%, 100% {
      transform: rotate(-30deg);
    }
    50% {
      transform: rotate(45deg);
    }
  }

  @keyframes legKick {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(-25deg);
    }
  }

  /* Confetti */
  .confetti {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .confetti span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0.7;
  }

  .confetti span:nth-child(1) {
    left: 10%;
    top: 30%;
    animation: confettiFall 3s ease-in infinite;
  }

  .confetti span:nth-child(2) {
    left: 20%;
    top: 20%;
    animation: confettiFall 2.5s ease-in infinite;
    background-color: var(--color-accent);
    delay: 0.5s;
  }

  .confetti span:nth-child(3) {
    left: 70%;
    top: 15%;
    animation: confettiFall 3.5s ease-in infinite;
    background-color: var(--color-secondary);
    delay: 1s;
  }

  .confetti span:nth-child(4) {
    left: 80%;
    top: 25%;
    animation: confettiFall 2.8s ease-in infinite;
    background-color: var(--color-primary-light);
    delay: 0.3s;
  }

  .confetti span:nth-child(5) {
    left: 15%;
    top: 40%;
    animation: confettiFall 3.2s ease-in infinite;
    background-color: var(--color-accent);
    delay: 0.8s;
  }

  @keyframes confettiFall {
    0% {
      transform: translateY(-100px) rotateZ(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(300px) rotateZ(360deg);
      opacity: 0;
    }
  }

  /* ==================== ERROR CONTENT ==================== */

  .error-content {
    text-align: center;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .error-content {
      text-align: left;
      flex: 1;
    }
  }

  .error-code {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
    letter-spacing: -2px;
  }

  @media (min-width: 768px) {
    .error-code {
      font-size: 5.5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-code {
      font-size: 6.5rem;
    }
  }

  .error-title {
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-light);
    margin: 0.5rem 0 1rem 0;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-title {
      font-size: 3rem;
    }
  }

  .error-message {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 1rem 0;
  }

  @media (min-width: 768px) {
    .error-message {
      font-size: 1.0625rem;
    }
  }

  .error-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 1rem 0 0 0;
  }

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

  /* ==================== HELP SECTION ==================== */

  .error-help {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .error-help-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .error-help-content {
      gap: 3rem;
    }
  }

  .error-help-content > h3 {
    font-family: var(--font-primary);
    font-size: 1.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .error-help-content > h3 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .error-help-content > h3 {
      font-size: 2.5rem;
    }
  }

  /* ==================== HELP OPTIONS ==================== */

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

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

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

  .help-option {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .help-option {
      padding: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .help-option {
      padding: 2rem;
    }
  }

  .help-option:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .help-option i {
    font-size: var(--icon-lg);
    color: var(--color-primary);
    margin-bottom: 1rem;
  }

  @media (min-width: 1024px) {
    .help-option i {
      font-size: var(--icon-xl);
      margin-bottom: 1.25rem;
    }
  }

  .help-option h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .help-option h4 {
      font-size: 1.25rem;
    }
  }

  .help-option p {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
  }

  @media (min-width: 768px) {
    .help-option p {
      font-size: 0.9375rem;
    }
  }

  /* ==================== ERROR ACTION ==================== */

  .error-action {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
  }

  .error-action .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .error-action .btn i {
    font-size: 1rem;
  }

  /* ==================== BUTTONS ==================== */

  .btn {
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
  }

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

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

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

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

  /* ==================== ERROR SUPPORT ==================== */

  .error-support {
    background: var(--color-secondary-light);
    border-left: 4px solid var(--color-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
  }

  @media (min-width: 768px) {
    .error-support {
      padding: 2rem;
      text-align: center;
    }
  }

  .error-support p {
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    color: var(--color-secondary);
    line-height: 1.6;
    margin: 0;
  }

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

  /* ==================== CONTAINER ==================== */

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

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

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