/*
Theme Name: Fundacja
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(224, 30%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(224, 30%, 20%);
  --primary: hsl(224, 42%, 47%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(24, 50%, 85%);
  --secondary-foreground: hsl(224, 42%, 25%);
  --muted: hsl(24, 30%, 94%);
  --muted-foreground: hsl(224, 20%, 40%);
  --accent: hsl(24, 50%, 85%);
  --accent-foreground: hsl(224, 42%, 25%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --border: hsl(24, 30%, 88%);
  --radius: 0.75rem;

  --blob-blue: hsl(224, 42%, 47%);
  --blob-peach: hsl(24, 50%, 85%);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --shadow-soft: 0 4px 30px hsla(224, 42%, 47%, 0.1);
  --shadow-medium: 0 10px 40px hsla(224, 42%, 47%, 0.15);
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

ul {
  list-style: none;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(224, 42%, 40%);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--accent);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Card styles */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-soft);
}

.card-content {
  padding: 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo img {
  height: 12rem;
  width: auto;
}

.header-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .header-logo-text {
    display: block;
  }
}

.header-logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.2;
}

.header-logo-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.nav-desktop {
  display: none;
}

@media (min-width: 1280px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.nav-link:hover {
  background-color: #ffe4d0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-medium);
  padding: 0.5rem;
  /* margin-top: 0.25rem; */
}

@media (min-width: 993px) {
  .nav-dropdown:hover .nav-dropdown-content {
    display: block;
  }
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.nav-dropdown-item:hover {
  background-color: #ffe4d0;
}

.header-cta {
  display: none;
}

@media (min-width: 1280px) {
  .header-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
}

@media (min-width: 1280px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 8rem;
  background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(24, 30%, 97%) 100%);
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(24, 50, 85, 0.1);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge svg {
  color: var(--primary);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.text-gradient {
  color: #4862ae;
  background-clip: text;
}



.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-krs {
  display: inline-block;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-soft);
}

.hero-krs-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.hero-krs-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}



/* ==========================================================================
   News / Aktualności
   ========================================================================== */

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.news-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #eceff6;
  color: var(--primary);
}

.news-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.news-card:hover .news-card-title {
  color: var(--primary);
}

.news-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

.news-card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap 0.2s;
}

.news-read-more:hover {
  gap: 0.5rem;
}



/* Blob decorations */
.blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
}

.blob-peach {
  background: linear-gradient(135deg, var(--blob-peach) 0%, hsl(24, 60%, 90%) 100%);
}

.blob-blue {
  background: linear-gradient(135deg, var(--blob-blue) 0%, hsl(224, 50%, 55%) 100%);
}

.blob-xl {
  width: 12rem;
  height: 12rem;
}

.blob-lg {
  width: 8rem;
  height: 8rem;
}

.blob-md {
  width: 6rem;
  height: 6rem;
}

.blob-sm {
  width: 4rem;
  height: 4rem;
}


.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 6s ease-in-out infinite 2s;
}

.animate-blob {
  animation: blob-morph 9s ease-in-out infinite;
}

.blob:nth-child(2) {
  animation-delay: -3s;
}

.blob:nth-child(3) {
  animation-delay: -6s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(-3deg);
  }

  50% {
    transform: translateY(-20px) rotate(6deg);
  }

  100% {
    transform: translateY(0px) rotate(-3deg);
  }
}

@keyframes blob-morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: scale(1) rotate(0deg);
  }

  25% {
    border-radius: 70% 30% 55% 45% / 45% 55% 40% 60%;
    transform: scale(1.03) rotate(2deg);
  }

  50% {
    border-radius: 40% 60% 65% 35% / 60% 40% 55% 45%;
    transform: scale(0.97) rotate(-2deg);
  }

  75% {
    border-radius: 65% 35% 40% 60% / 50% 50% 45% 55%;
    transform: scale(1.02) rotate(1.5deg);
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: scale(1) rotate(0deg);
  }
}



/* Section styles */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-muted {
  background-color: rgba(24, 50, 85, 0.03);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Features grid */
.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(67, 92, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 43, 67, 0.8), rgba(33, 43, 67, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* Donate section */
mb-8 {
  margin-bottom: 2rem;
}

/* ===== DAROWIZNY PAGE ===== */
.donations-krs-section {
  text-align: center;
}

.donations-krs-content {
  max-width: 42rem;
  margin: 0 auto;
}

.donations-krs-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.donations-krs-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.donations-krs-box {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.donations-krs-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.donations-krs-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.donations-bank-section {
  max-width: 42rem;
  margin: 0 auto;
}

.donations-bank-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.donations-bank-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.donations-bank-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.donations-bank-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.donations-bank-fields {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.donations-bank-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .donations-bank-fields-grid {
    grid-template-columns: 1fr;
  }
}

.donations-copy-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: hsl(224, 42%, 47%, 0.03);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.donations-copy-field:hover {
  background: hsl(224, 42%, 47%, 0.08);
  border-color: var(--primary);
}

.donations-copy-field.copied {
  background: hsl(142, 70%, 95%);
  border-color: hsl(142, 70%, 45%);
}

.donations-copy-field-info {
  flex: 1;
}

.donations-copy-field-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.donations-copy-field-value {
  font-weight: 500;
  color: var(--foreground);
}

.donations-mono {
  font-family: monospace;
  letter-spacing: 0.05em;
}

.donations-copy-icon {
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.donations-copy-field:hover .donations-copy-icon {
  color: var(--primary);
}

.donations-copy-feedback {
  display: none;
  color: hsl(142, 70%, 45%);
  font-weight: 600;
}

.donations-copy-field.copied .donations-copy-icon {
  display: none;
}

.donations-copy-field.copied .donations-copy-feedback {
  display: block;
}

.donations-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .donations-payment-grid {
    grid-template-columns: 1fr;
  }
}

.donations-payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.donations-payment-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: hsl(224, 42%, 47%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.donations-payment-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.donations-payment-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.donations-btn-full {
  width: 100%;
}

.donations-tax-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.donations-tax-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(224, 42%, 47%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.donations-tax-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.donations-tax-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.donations-tax-card p:last-child {
  margin-bottom: 0;
}

.donations-tax-card a {
  color: var(--primary);
  text-decoration: underline;
}

.donations-tax-card a:hover {
  text-decoration: none;
}

/* Donate section */
.donate-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .donate-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.donate-krs-box {
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.donate-krs-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donate-krs-icon svg {
  width: 2rem;
  height: 2rem;
}

.donate-krs-label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.donate-krs-number {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
}

.donate-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.donate-method:hover {
  box-shadow: var(--shadow-medium);
}

.donate-method-highlight {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.donate-method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donate-method-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.donate-method-icon-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.donate-method-icon-secondary {
  background-color: rgba(67, 92, 164, 0.1);
  color: var(--primary);
}

.donate-method h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.donate-method p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact section */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(67, 92, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--primary);
}

.bank-info {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: rgba(24, 50, 85, 0.05);
  border: 1px solid var(--secondary);
  text-align: center;
}

.bank-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.bank-info p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.bank-info strong {
  color: var(--foreground);
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-links a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-krs {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-krs {
    text-align: right;
  }
}

.footer-krs-label {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.footer-krs-number {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-heart {
  color: var(--destructive);
}

/* Subpage hero */
.subpage-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, rgba(67, 92, 164, 0.05) 0%, var(--background) 100%);
  overflow: hidden;
  margin-top: 3rem;
}

.page-title {
  font-size: 3.2rem;
}

.subpage-hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  text-align: center;
}

.subpage-hero-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

.subpage-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .subpage-hero h1 {
    font-size: 3rem;
  }
}

.subpage-hero p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

/* Stats grid */
/* .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
} */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;

}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.stat-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin: 0 auto 0.75rem;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Reports list */
.reports-list {
  max-width: 48rem;
  margin: 0 auto;
}

.report-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.report-card:hover {
  border-color: rgba(67, 92, 164, 0.4);
}

.report-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.report-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.report-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.report-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .report-buttons {
    flex-direction: row;
  }
}

.report-buttons .btn {
  flex: 1;
}

/* Steps section */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
  transition: border-color 0.2s;
}

.step-card:hover {
  border-color: rgba(67, 92, 164, 0.4);
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Criteria list */
.criteria-list {
  list-style: none;
}

.criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.criteria-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Documents list */
.documents-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.document-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.document-info h4 {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.document-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Quote box */
.quote-box {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: rgba(67, 92, 164, 0.05);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.quote-box svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.quote-box blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.quote-box cite {
  color: var(--muted-foreground);
  font-style: normal;
}

/* Values grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
  /* max-width: 56rem; */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(67, 92, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted-foreground);
}

/* Team grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(67, 92, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.team-card h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Timeline */
.timeline {
  max-width: 42rem;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .timeline-year {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
} */

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.timeline-line {
  width: 2px;
  flex: 1;

  margin-top: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.timeline-content {
  flex: 1;
  padding: 1rem;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.timeline-content p {
  color: var(--foreground);
}

/* Partnership grid */
.partnership-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .partnership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partnership-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
  transition: border-color 0.2s;
}

.partnership-card:hover {
  border-color: rgba(67, 92, 164, 0.4);
}

.partnership-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.partnership-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(67, 92, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.partnership-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.partnership-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.benefits-list {
  list-style: none;
  margin-top: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.benefits-list li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
}

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-card {
  /* padding: 0.5rem; */
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  color: var(--muted-foreground);
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}



.partner-card:hover {
  transform: scale(1.88);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.partner-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.25s ease;
}

.partner-card:hover img {
  filter: none;
  opacity: 1;
}



/* Filmography */
.filmography-list {
  max-width: 56rem;
  margin: 0 auto;
}

.filmography-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

@media (min-width: 640px) {
  .filmography-item {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.filmography-item:hover {
  border-color: rgba(67, 92, 164, 0.4);
}

.filmography-year {
  color: var(--primary);
  font-family: monospace;
  font-size: 0.875rem;
  width: 6rem;
}

.filmography-title {
  font-weight: 600;
  color: var(--foreground);
  flex: 1;
}

.filmography-role {
  color: var(--muted-foreground);
}

.filmography-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  background-color: var(--muted);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  width: fit-content;
}

/* Theater grid */
.theater-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .theater-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.theater-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.theater-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.theater-header h3 {
  font-weight: 600;
  color: var(--foreground);
}

.theater-header span {
  font-size: 0.875rem;
  color: var(--primary);
}

.theater-card p {
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.theater-card p:last-child {
  font-size: 0.875rem;
}

/* Awards list */
.awards-list {
  max-width: 56rem;
  margin: 0 auto;
}

.award-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background-color: rgba(67, 92, 164, 0.05);
  border: 1px solid rgba(67, 92, 164, 0.2);
  margin-bottom: 1rem;
}

.award-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(67, 92, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.award-year {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.award-card h3 {
  font-weight: 600;
  color: var(--foreground);
}

.award-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Voice work box */
.voice-work-box {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.voice-work-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.voice-work-header svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.voice-work-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.voice-work-box p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* CTA box */
.cta-box {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: rgba(67, 92, 164, 0.05);
  border: 1px solid rgba(67, 92, 164, 0.2);
  text-align: center;
}

.cta-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Two column layout */
.two-columns {
  display: grid;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.column-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.column-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.column-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

/* Section header with icon */
.section-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.section-header-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.section-header-icon h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

/* Info box */
.info-box {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: calc(var(--radius) * 1.5);
  background-color: var(--card);
  border: 1px solid rgba(67, 92, 164, 0.2);
}

.info-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.info-box p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

/* Icon SVG styles */
svg {
  display: inline-block;
  vertical-align: middle;
}




/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #000;
}

.nav-mobile {
  position: fixed;
  display: none;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

/* menu otwarte */
.nav-mobile.is-open {
  display: block;
  margin-top: 9rem;
}

/* wrapper z WP */
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================
   LINKS – GŁÓWNE
========================= */

.nav-mobile .nav-link,
.nav-mobile>a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;

  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #eee;
}

/* hover / tap feedback */
.nav-mobile a:active {
  background: #f5f5f5;
}

/* =========================
   DROPDOWN
========================= */

.nav-mobile .nav-dropdown {
  display: block;
}

/* SUBMENU – DOMYŚLNIE UKRYTE */
.nav-mobile .nav-dropdown-content {
  display: none;
  background: #f9f9f9;
}

/* submenu domyślnie zamknięte */
.nav-dropdown-content {
  display: none;
}

/* submenu otwarte */
.nav-dropdown.open .nav-dropdown-content {
  display: block;
}

/* =========================
   SUBMENU LINKS
========================= */

.nav-mobile .nav-dropdown-content a {
  display: block;
  padding: 14px 24px;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eaeaea;
}

/* =========================
   ICON (ARROW)
========================= */

.nav-mobile .nav-dropdown svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* obrót strzałki */
.nav-mobile .nav-dropdown.open svg {
  transform: rotate(180deg);
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 993px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile .nav-dropdown-content {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;

  display: none;
  width: 100%;
  padding-left: 16px;
  background: #f9f9f9;
}

/* otwarte submenu */
.nav-mobile .nav-dropdown.open .nav-dropdown-content {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }
}


/* PROCENT */

.steps-section {
  padding: 5rem 0;
  background: hsla(24, 30%, 94%, 0.3);
}

/* Steps section */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: hsla(224, 42%, 47%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.benefits-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.data-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.data-item {
  background: var(--muted);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.data-item:last-child {
  margin-bottom: 0;
}

.faq-section {
  padding: 5rem 0;
  background: hsla(24, 30%, 94%, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.faq-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.cta-section {
  padding: 5rem 0;
}

.cta-card {
  background: var(--primary);
  color: white;
  padding: 4rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bg-muted {
  background: var(--secondary);
}

/* =============================================
   WSPOMNIENIA PAGE STYLES
   ============================================= */

/* Main quote section */
.main-quote-section {
  padding: 4rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.main-quote-section .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-mark {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.main-quote-section blockquote {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  font-style: italic;
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.main-quote-section cite {
  opacity: 0.8;
  font-size: 1.125rem;
  font-style: normal;
}

/* About person section */
.about-person-section {
  padding: 5rem 0;
}

.about-person-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-person-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.life-dates {
  display: inline-flex;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(24, 50, 85, 0.05);
  border-radius: 1rem;
}

.life-date-item {
  text-align: center;
}

.life-date-value {
  font-family: var(--font-heading);
  font-size: 1.6rem !important;
  font-weight: 700;
  color: var(--primary);
}

.life-date-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.life-date-divider {
  width: 1px;
  background: var(--border);
}

/* Memory cards */
.memories-grid {
  display: grid;
  gap: 2rem;
  /* max-width: 64rem; */
  margin: 0 auto;
}

.memory-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-soft);
}

.memory-card-content {
  padding: 2rem;
}

.memory-quote-mark {
  font-size: 3rem;
  color: rgba(67, 92, 164, 0.2);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.memory-card blockquote {
  /* font-size: 1.125rem; */
  line-height: 1.8;
  color: var(--foreground);
  font-style: italic;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.memory-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
}

.memory-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.memory-author-name {
  font-weight: 600;
  color: var(--foreground);
}

.memory-author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Quote cards grid */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.quote-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: calc(var(--radius) * 1.5);
  background: var(--card);
  border: 1px solid var(--border);
}

.quote-card-primary {
  background: rgba(67, 92, 164, 0.05);
  border-color: rgba(67, 92, 164, 0.1);
}

.quote-card-secondary {
  background: rgba(24, 50, 85, 0.1);
  border-color: var(--secondary);
}

.quote-card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.quote-card p {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
}

/* Beneficiary cards */
.beneficiaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.beneficiary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-soft);
}

.beneficiary-card-content {
  padding: 2rem;
}

.beneficiary-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.beneficiary-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgba(67, 92, 164, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficiary-avatar-secondary {
  background: linear-gradient(135deg, var(--secondary), rgba(24, 50, 85, 0.3));
}

.beneficiary-avatar span {
  font-size: 1.5rem;
  color: var(--primary-foreground);
}

.beneficiary-avatar-secondary span {
  color: var(--secondary-foreground);
}

.beneficiary-name {
  font-weight: 600;
  color: var(--foreground);
}

.beneficiary-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.beneficiary-card p:last-child {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Share memory CTA */
.share-memory-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.share-memory-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.share-memory-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(67, 92, 164, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.share-memory-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Section (primary background) */
.cta-section-primary {
  padding: 4rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-primary h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section-primary p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: hsl(24, 50%, 80%);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* ===================== */
/* Donations Page Styles */
/* ===================== */

/* 1,5% Procent Page */
.steps-section {
  padding: 5rem 0;
  background: hsla(24, 30%, 94%, 0.3);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.step-card-procent {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: hsla(224, 42%, 47%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0rem;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: hsla(224, 42%, 47%, 0.15);
  margin-bottom: 0.5rem;
}

.step-number-procent {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: hsla(224, 42%, 47%, 0.15);
  margin-bottom: 0.5rem;
}


.step-description {
  color: var(--muted-foreground);
  margin: 0;
}

.benefits-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.benefits-grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .benefits-grid-two-col {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.benefit-title {
  margin-bottom: 0.25rem;
}

.benefit-text {
  color: var(--muted-foreground);
  margin: 0;
}

.data-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.data-card-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.data-item {
  background: var(--muted);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.data-item:last-child {
  margin-bottom: 0;
}

.data-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.data-value {
  font-weight: 600;
  margin: 0;
}

.data-value-krs {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-section {
  padding: 5rem 0;
  background: hsla(24, 30%, 94%, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.faq-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.faq-answer {
  color: var(--muted-foreground);
  margin: 0;
}

.cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: var(--primary);
  color: white;
  padding: 4rem;
  border-radius: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  color: white;
}

.cta-icon {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.cta-text {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-krs-card {
  background: var(--primary);
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto 0;
  box-shadow: var(--shadow-medium);
}

.hero-krs-label {
  opacity: 0.9;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;

}

.hero-krs-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-krs-copy-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.hero-krs-copy-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.copy-feedback {
  display: none;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.copy-feedback.show {
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-description {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.position-relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}



/* ===== POTRZEBUJĘ POMOCY PAGE ===== */

.help-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .help-steps-grid {
    grid-template-columns: 1fr;
  }
}

.help-step-card {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid hsl(224, 42%, 47%, 0.2);
  border-radius: 0.5rem;
  transition: border-color 0.2s;
}

.help-step-card:hover {
  border-color: hsl(224, 42%, 47%, 0.4);
}

.help-step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: hsl(224, 42%, 47%, 0.3);
}

@media (max-width: 768px) {
  .help-step-card:not(:last-child)::after {
    display: none;
  }
}

.help-step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}

.help-step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.help-step-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.help-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .help-two-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.help-criteria-box,
.help-documents-box {
  display: flex;
  flex-direction: column;
}

.help-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.help-section-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.help-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.help-criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.help-criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.help-criteria-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.help-documents-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.help-document-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--card);
  border: 1px solid hsl(224, 42%, 47%, 0.2);
  border-radius: 0.5rem;
}

.help-document-info h4 {
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.help-document-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.help-contact-card {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: hsl(224, 42%, 47%, 0.05);
  border: 1px solid hsl(224, 42%, 47%, 0.2);
  border-radius: 0.5rem;
}

.help-contact-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.help-contact-card>p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.help-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.blob-hero-right {
  position: absolute;
  top: -5rem;
  right: -5rem;
  opacity: 0.2;
  width: 24rem;
  height: 24rem;
}

.blob-hero-left {
  position: absolute;
  bottom: -3rem;
  left: -5rem;
  opacity: 0.15;
  width: 16rem;
  height: 16rem;
}

.text-center {
  text-align: center;
}

.mb-12 {
  margin-bottom: 3rem;
}


/* ==========================================================================
   Activities Grid
   ========================================================================== */

.activities-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}

.activity-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.activity-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.activity-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.activity-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.activity-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ==========================================================================
   Programs Grid
   ========================================================================== */

.programs-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.program-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s;
}

.program-card:hover {
  box-shadow: var(--shadow-medium);
}

.program-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.program-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.program-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==========================================================================
   Stats Grid
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ==========================================================================
   Events Grid
   ========================================================================== */

.events-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}

.event-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-content {
  padding: 1.5rem;
}

.event-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.event-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Memories Grid
   ========================================================================== */

.memories-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .memories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.memory-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.memory-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--muted);
}

.memory-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memory-card blockquote {
  font-style: italic;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.memory-author strong {
  display: block;
  color: var(--foreground);
  font-weight: 600;
}

.memory-author span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   Video Grid
   ========================================================================== */

.video-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.2s;
}

.video-placeholder:hover {
  background: var(--primary);
  color: var(--primary);
}

.video-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 1rem 1rem 0.5rem;
}

.video-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0 1rem 1rem;
}

/* ==========================================================================
   Quote Hero
   ========================================================================== */

.quote-hero {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-hero blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .quote-hero blockquote {
    font-size: 2rem;
  }
}

.quote-hero blockquote::before,
.quote-hero blockquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

.quote-hero cite {
  color: var(--muted-foreground);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}

/* ==========================================================================
   Documents Grid
   ========================================================================== */

.documents-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.document-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .document-card {
    flex-direction: row;
    align-items: center;
  }
}

.document-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary) / 0.1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.document-info {
  flex: 1;
}

.document-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.document-info p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.document-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground) / 0.8;
}

.document-card .btn {
  flex-shrink: 0;
}

/* ==========================================================================
   Stats Grid
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2rem;
  color: var(--primary);
  font-family: var(--font-heading);
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}


.custom-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  /* wielkość emoji */
  line-height: 1;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.legend-emoji {

  font-size: 22px;
  margin-right: 8px;
}

.map-filters {
  margin-top: 15px;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.map-filters button {
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.map-filters button:hover {
  background: #f3f3f3;
}

.map-filters button.active {
  background: #2271b1;
  color: white;
  border-color: #2271b1;
}

.map-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  z-index: 100000;
}



/* ==========================================================================
   Contact Page Layout
   ========================================================================== */

.contact-layout {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-card a,
.contact-info-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--primary) / 0.1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-card-highlight {
  flex-direction: column;
  background: var(--secondary) / 0.3;
}

.contact-info-card-highlight h3 {
  margin-bottom: 0.75rem;
}

.transfer-details {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.transfer-details strong {
  color: var(--foreground);
}

.contact-form-column .contact-form {
  max-width: none;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-textarea,
.wpcf7-text {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-textarea:focus,
.wpcf7-text:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary) / 0.1;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

.wpcf7-submit,
.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* ==========================================================================
   Article / Aktualność Page
   ========================================================================== */

.article-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
}

.article-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      color-mix(in srgb, var(--foreground) 70%, transparent),
      color-mix(in srgb, var(--foreground) 10%, transparent),
      transparent);
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.badge-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
}

.article-hero-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #e3d7e3;
}

.article-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-foreground);
  max-width: 48rem;
  line-height: 1.2;
}

.article-section {
  position: relative;
  overflow: hidden;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.article-back-link:hover {
  color: var(--primary);
}

.article-body {
  max-width: 48rem;
}

.article-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.article-gallery {
  margin-top: 4rem;
}

.article-gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .article-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .article-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}

.article-gallery-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.article-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-gallery-item:hover img {
  transform: scale(1.1);
}

.article-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      color-mix(in srgb, var(--foreground) 70%, transparent),
      color-mix(in srgb, var(--foreground) 10%, transparent),
      transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.article-gallery-item:hover .article-gallery-item-overlay {
  opacity: 1;
}

.article-gallery-item-overlay span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transform: translateY(1rem);
  transition: transform 0.3s;
}

.article-gallery-item:hover .article-gallery-item-overlay span {
  transform: translateY(0);
}

.article-gallery-item:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero-badge-post-data {
  background: #e1e4eb;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Archive / News Listing Page
   ========================================================================== */

/* Hero */
.archive-hero {
  position: relative;
  padding: 10rem 0 4rem;
  overflow: hidden;
  text-align: center;
}

.archive-hero-content {
  position: relative;
  z-index: 10;
}

.archive-hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.archive-hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .archive-hero-title {
    font-size: 3.5rem;
  }
}

/* Filters Toolbar */
.archive-filters {
  padding: 0 0 1rem;
  position: sticky;
  top: 4.5rem;
  z-index: 20;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.archive-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .archive-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.archive-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.archive-cat-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.archive-cat-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.archive-cat-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.archive-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--muted-foreground);
  min-width: 0;
}

@media (min-width: 768px) {
  .archive-search {
    width: 18rem;
  }
}

.archive-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--foreground);
  width: 100%;
}

.archive-search-input::placeholder {
  color: var(--muted-foreground);
}

/* Featured Article */
.archive-featured-section {
  padding-top: 1.5rem;
  padding-bottom: 0;
}

.archive-featured {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.archive-featured:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .archive-featured {
    grid-template-columns: 1fr 1fr;
  }
}

.archive-featured-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

@media (min-width: 768px) {
  .archive-featured-image {
    aspect-ratio: auto;
    min-height: 20rem;
  }
}

.archive-featured-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.archive-featured:hover .archive-featured-image img {
  transform: scale(1.05);
}

.archive-featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.archive-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.archive-featured-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.archive-featured-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

@media (min-width: 640px) {
  .archive-featured-title {
    font-size: 1.75rem;
  }
}

.archive-featured:hover .archive-featured-title {
  color: var(--primary);
}

.archive-featured-excerpt {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.archive-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.archive-featured:hover .archive-featured-link {
  gap: 0.75rem;
}

/* Archive Grid */
.archive-grid-section {
  padding-top: 1rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Archive Card */
.archive-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.archive-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.archive-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.archive-card-thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.archive-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.archive-card:hover .archive-card-thumb img {
  transform: scale(1.08);
}

.archive-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.archive-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.archive-card-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.archive-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.archive-card:hover .archive-card-title {
  color: var(--primary);
}

.archive-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Empty State */
.archive-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.archive-empty-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.archive-empty-text {
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

/* Load More */
.archive-load-more {
  text-align: center;
  padding: 3rem 0 1rem;
}

.donation-form-section {
  background: var(--muted) / 0.3;
}

.donation-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.donation-form-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.donation-amount-btn {
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.donation-amount-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.donation-amount-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground)
}

.donation-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--foreground);
  background: var(--background);
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease;
}

.donation-input:focus {
  outline: none;
  border-color: var(--primary);
}

.donation-input::placeholder {
  color: var(--muted-foreground);
}

.donation-custom-amount {
  margin-bottom: 0;
}

.donation-payment-label {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.donation-payment-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-badge {
  padding: 0.4rem 1rem;
  background: var(--muted);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
}

.donation-consents {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.donation-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  cursor: pointer;
}

.donation-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--primary)
}

.donation-consent a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-donate-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-donate-submit:hover {
  background: color-mix(in srgb, var(--primary) 90%, transparent);
}

@media (max-width: 640px) {
  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .donation-form-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Team Grid
   ========================================================================== */

.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .team-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.team-card-compact {
  padding: 1.5rem;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  background: var(--muted);
}

.team-avatar-sm {
  width: 140px;
  height: 140px;
  margin-bottom: 1rem;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.team-bio-short {
  color: var(--muted-foreground);
  font-size: 0.8rem;
}


/* ==========================================================================
   Portfolio Page — Elegant Minimal Redesign
   ========================================================================== */

.portfolio-hero {
  padding: 8rem 0 5rem;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: 10rem 0 7rem;
  }
}

.portfolio-hero-inner {
  max-width: 56rem;
}

.portfolio-overline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .portfolio-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero-title {
    font-size: 4rem;
  }
}

.portfolio-hero-line {
  width: 5rem;
  height: 1px;
  background: var(--primary) / 0.3;
  margin-bottom: 2rem;
}

.portfolio-hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 32rem;
}

@media (min-width: 768px) {
  .portfolio-hero-desc {
    font-size: 1.25rem;
  }
}

/* Section */
.portfolio-section {
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .portfolio-section {
    padding-bottom: 8rem;
  }
}

.portfolio-section-inner {
  max-width: 72rem;
}

.portfolio-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .portfolio-section-label {
    margin-bottom: 4rem;
  }
}

.portfolio-section-num {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
}

.portfolio-section-divider {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--muted-foreground);
  opacity: 0.25;
}

.portfolio-section-name {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .portfolio-grid {
    gap: 1.25rem;
  }

  .portfolio-grid.portfolio-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.portfolio-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 2px;
}

.portfolio-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--muted);
  margin-bottom: 0.75rem;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.03);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .portfolio-card-title {
    font-size: 1rem;
  }
}

.portfolio-card-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .portfolio-card-sub {
    font-size: 0.8125rem;
  }
}

.portfolio-card-dot {
  opacity: 0.4;
}

/* Divider */
.portfolio-divider-line {
  height: 1px;
  background: var(--border);
}

/* CTA */
.portfolio-cta {
  padding: 6rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: 8rem 0;
  }
}

.portfolio-cta-inner {
  max-width: 56rem;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-cta-title {
    font-size: 1.875rem;
  }
}

.portfolio-cta-desc {
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}

.portfolio-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .portfolio-cta-buttons {
    flex-direction: row;
  }
}

.portfolio-btn-dark {
  background: var(--foreground);
  color: var(--background);
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.portfolio-btn-dark:hover {
  background: color-mix(in srgb, var(--foreground) 90%, transparent);
}

/* CTA */
.portfolio-cta {
  padding: 6rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: 8rem 0;
  }
}

.portfolio-cta-inner {
  max-width: 56rem;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-cta-title {
    font-size: 1.875rem;
  }
}

.portfolio-cta-desc {
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}

.portfolio-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .portfolio-cta-buttons {
    flex-direction: row;
  }
}

.portfolio-btn-dark {
  background: var(--foreground);
  color: var(--background);
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.portfolio-btn-dark:hover {
  background: color-mix(in srgb, var(--foreground) 90%, white);
}


/* ==========================================================================
   Content with Image
   ========================================================================== */

.content-with-image {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .content-with-image {
    grid-template-columns: 1fr 1fr;
  }

  .content-reverse {
    direction: rtl;
  }

  .content-reverse>* {
    direction: ltr;
  }
}

.content-text p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-narrow {
  max-width: 700px;
  margin: 0 auto;
}

.content-narrow p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.8;
}

.map-tooltip {
  max-width: 220px;
  font-size: 14px;
}

.map-tooltip strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.map-tooltip p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.gm-ui-hover-effect {
  display: none !important;
}


/* ==========================================================================
   Rada Fundacji Page
   ========================================================================== */

/* Hero */

.rada-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: linear-gradient(160deg,
      var(--background) 0%,
      color-mix(in srgb, var(--primary) 6%, transparent) 50%,
      color-mix(in srgb, var(--secondary) 15%, transparent) 100%);
  overflow: hidden;
}

.rada-hero-inner {
  /* max-width: 700px; */
  text-align: center;
}

.rada-hero-label {
  /* display: flex; */
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin: 0 auto;
  text-align: center;
}

.rada-hero-line {
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--primary);
}

.rada-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.rada-hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Mission */
.rada-mission {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.rada-mission-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .rada-mission-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }
}

.rada-mission-left h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
}

.rada-mission-right p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.rada-mission-right p:last-child {
  margin-bottom: 0;
}

/* Overline */
.rada-overline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Members */
.rada-members {
  padding: 5rem 0;
  background: color-mix(in srgb, var(--muted) 30%, transparent);
}

/* Featured member */
.rada-featured {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .rada-featured {
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    padding: 3rem;
  }

  .rada-featured-reverse {
    grid-template-columns: 1fr 200px;
  }

  .rada-featured-reverse .rada-featured-avatar {
    order: 2;
  }

  .rada-featured-reverse .rada-featured-info {
    order: 1;
  }
}

.rada-featured-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--muted);
  margin: 0 auto;
  border: 4px solid color-mix(in srgb, var(--primary) 15%, transparent);
}

@media (min-width: 768px) {
  .rada-featured-avatar {
    width: 200px;
    height: 200px;
    margin: 0;
  }
}

.rada-featured-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rada-featured-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  padding: 0.35rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.rada-featured-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.rada-featured-info p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Members grid */
.rada-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .rada-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rada-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rada-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.rada-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.rada-card-content {
  padding: 2rem;
  text-align: center;
}

.rada-card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--muted);
  margin: 0 auto 1.25rem;
}

.rada-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rada-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.rada-card-role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.rada-card-bio {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Responsibilities */
.rada-responsibilities {
  padding: 5rem 0;
}

.rada-resp-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.rada-resp-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.rada-resp-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
}

.rada-resp-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--primary) 20%, transparent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.rada-resp-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.35rem;
}

.rada-resp-body p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* CTA */
.rada-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 5%, transparent),
      color-mix(in srgb, var(--secondary) 15%, transparent));
}

.rada-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rada-cta-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.rada-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.rada-cta-text p {
  color: var(--muted-foreground);
  max-width: 400px;
}

.rada-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}


/* ==========================================================================
   GALERIE PAGE
   ========================================================================== */

/* --- Hero --- */
.gal-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(24, 30%, 22%) 0%, hsl(24, 20%, 15%) 50%, hsl(20, 15%, 12%) 100%);
  overflow: hidden;
}

.gal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, hsl(var(--secondary) / 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, hsl(24 40% 40% / 0.2), transparent);
  z-index: 1;
}

.gal-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
}

.gal-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.gal-hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.gal-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.gal-hero-subtitle {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--primary-foreground) 60%, transparent);
  max-width: 26rem;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes gal-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* --- Sections --- */
.gal-section {
  padding: 5rem 0;
}

.gal-section--dark {
  background: var(--foreground);
  color: var(--primary-foreground);
}

.gal-section--accent {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.gal-section-header {
  max-width: 600px;
  margin-bottom: 3rem;
}

.gal-section--dark .gal-section-header {
  color: var(--primary-foreground);
}

.gal-section-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.gal-section--dark .gal-section-number {
  color: var(--secondary);
}

.gal-section-line {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 1.25rem;
}

.gal-section--dark .gal-section-line {
  background: var(--secondary);
}

.gal-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.gal-section-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.gal-section--dark .gal-section-desc {
  color: hsl(var(--primary-foreground) / 0.6);
}

/* --- Mosaic Grid (01) --- */
.gal-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 12px;
}

.gal-mosaic-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.gal-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
}

.gal-mosaic-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.gal-mosaic-item--tall {
  grid-row: span 2;
}

.gal-mosaic-item--wide {
  grid-column: span 2;
}

.gal-mosaic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, hsl(0, 0%, 0%, 0.7), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gal-mosaic-item:hover .gal-mosaic-caption {
  transform: translateY(0);
  opacity: 1;
}

.gal-mosaic-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.35rem;
}

.gal-mosaic-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}

.gal-mosaic-caption p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Horizontal Scroll (02) --- */
.gal-hscroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--primary) 30%, transparent) transparent;
  padding-bottom: 1rem;
}

.gal-hscroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.gal-hscroll-wrapper::-webkit-scrollbar-thumb {
  background: hsl(var(--primary) / 0.3);
  border-radius: 3px;
}

.gal-hscroll {
  display: flex;
  gap: 1.5rem;
  padding: 0 max(2rem, calc((100vw - 1200px) / 2 + 1rem));
  width: max-content;
}

.gal-hscroll-card {
  flex: 0 0 280px;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gal-hscroll-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.gal-hscroll-img {
  height: 320px;
  overflow: hidden;
}

.gal-hscroll-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gal-hscroll-card:hover .gal-hscroll-img img {
  transform: scale(1.06);
}

.gal-hscroll-info {
  padding: 1.25rem;
}

.gal-hscroll-info span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.gal-hscroll-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0.4rem 0 0.3rem;
}

.gal-hscroll-info p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* --- Stacked Cards (03) --- */
.gal-stacked {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.gal-stacked-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  text-decoration: none;
}

.gal-stacked-card--reverse {
  grid-template-columns: 1fr 1.2fr;
  direction: rtl;
}

.gal-stacked-card--reverse>* {
  direction: ltr;
}

.gal-stacked-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.gal-stacked-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gal-stacked-card:hover .gal-stacked-img img {
  transform: scale(1.05);
}

.gal-stacked-body {
  padding: 1rem 0;
}

.gal-stacked-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

.gal-stacked-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.gal-stacked-body p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.gal-stacked-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: letter-spacing 0.3s;
}

.gal-stacked-card:hover .gal-stacked-count {
  letter-spacing: 0.05em;
}

/* --- Archive Grid (04) --- */
.gal-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gal-archive-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}

.gal-archive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.3s;
  filter: grayscale(60%);
}

.gal-archive-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.gal-archive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}

.gal-archive-item:hover .gal-archive-overlay {
  background: linear-gradient(to top,
      color-mix(in srgb, var(--primary) 85%, transparent) 0%,
      color-mix(in srgb, var(--primary) 20%, transparent) 60%);
}

.gal-archive-overlay span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.gal-archive-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}

.gal-archive-overlay p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- CTA --- */
.gal-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(224, 50%, 35%) 100%);
  text-align: center;
}

.gal-cta-inner {
  max-width: 550px;
  margin: 0 auto;
}

.gal-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

.gal-cta-inner p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--primary-foreground) 70%, transparent);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gal-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: var(--primary-foreground);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsl(0 0% 0% / 0.2);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid color-mix(in srgb, var(--primary-foreground) 40%, transparent);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-light:hover {
  border-color: var(--primary-foreground);
  background: color-mix(in srgb, var(--primary-foreground) 8%, transparent);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .gal-mosaic {
    grid-template-columns: repeat(1, 1fr);
    /* grid-auto-rows: 200px; */
  }

  .gal-mosaic-item--tall {
    grid-row: span 2;
  }

  .gal-stacked-card,
  .gal-stacked-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.25rem;
  }

  .gal-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gal-hero {
    min-height: 55vh;
  }

  .gal-section {
    padding: 3.5rem 0;
  }

  .gal-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gal-mosaic-item--tall {
    grid-row: span 1;
  }

  .gal-mosaic-item--wide {
    grid-column: span 1;
  }

  .gal-mosaic-caption {
    transform: translateY(0);
    opacity: 1;
  }

  .gal-hscroll-card {
    flex: 0 0 240px;
  }

  .gal-hscroll-img {
    height: 260px;
  }

  .gal-archive-grid {
    grid-template-columns: 1fr;
  }

  .gal-stacked-body h3 {
    font-size: 1.15rem;
  }
}


/* ==========================================================================
   Article / Long-form Content Pages
   ========================================================================== */

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
}

/* Table of Contents */
.article-toc {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.article-toc-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid hsl(var(--border));
}

.article-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.article-toc-list li {
  counter-increment: toc;
}

.article-toc-list a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.article-toc-list a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
}

/* Article Body */
.article-content {
  min-width: 0;
}

.article-content section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.article-content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.article-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.article-content li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 0.35rem;
}

.article-content li strong {
  color: var(--foreground);
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--foreground);
}

/* Callout box */
.article-callout {
  background: var(--muted);
  border-left: 3px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.article-callout p {
  margin: 0;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-toc {
    position: static;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: var(--muted);
    border-radius: var(--radius);
  }

  .article-toc-list a {
    padding: 0.3rem 0.75rem;
  }
}

/* DO POPRAWY!!! */

#postanowienia,
#cele,
#majatek,
#organy,
#koncowe {
  scroll-margin-top: 120px;
}

/* Memory Modal */
.memory-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.memory-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.memory-modal {
  background: var(--card);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  margin-top: 200px;
  position: relative;
  box-shadow: var(--shadow-strong);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}

.memory-modal-overlay.active .memory-modal {
  transform: translateY(0) scale(1);
}

.memory-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--muted-foreground);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.memory-modal-close:hover {
  color: hsl(var(--foreground));
}

.memory-modal-body blockquote {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.memory-modal-body .memory-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.memory-author strong {
  display: block;
  color: var(--foreground);
  font-weight: 600;
}

.memory-author span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.memory-card blockquote.collapsible {
  max-height: 8.2em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.memory-card blockquote.collapsible::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2em;
  background: linear-gradient(transparent, var(--card));
  transition: opacity 0.3s ease;
}

.memory-expand-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.5rem;
  display: none;

}

.memory-expand-btn:hover {
  text-decoration: underline;
}

.memory-expand-btn.visible {
  display: block;
  margin: 0 auto 1.5rem;
  text-align: center;
}

/*MAP FILTER*/
.map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
}

#map {
  width: 100%;
  height: 650px;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  #map {
    height: 450px;
  }
}

/* Filters */
.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.map-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 2px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.map-filter-btn:hover {
  border-color: hsl(var(--primary));
}

.map-filter-btn.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.map-filter-btn .filter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-filter-btn.active .filter-dot {
  box-shadow: 0 0 0 2px hsl(var(--primary-foreground) / 0.4);
}

/* Slide panel */
.map-slide-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 90%;
  height: 100%;
  background: hsl(var(--card));
  box-shadow: -4px 0 20px hsl(var(--foreground) / 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.map-slide-panel.open {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
}

.panel-header h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin: 0;
}

.panel-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.panel-close:hover {
  background: hsl(var(--border));
}

.panel-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.panel-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.panel-detail {
  margin-bottom: 1rem;
}

.panel-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.panel-detail-value {
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
  line-height: 1.5;
}

.panel-separator {
  height: 1px;
  background: hsl(var(--border));
  margin: 1rem 0;
}

/* Legend in panel style */
.map-legend-inline {
  display: none;

  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);

}

.map-legend-inline .legend-entry {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.map-legend-inline .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#place-title {
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}

#place-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  margin-top: 1rem;
  background: color-mix(in srgb, var(--secondary) 50%, transparent);
}

.place-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.place-content {
  font-size: 0.7375rem;
  color: var(--foreground);
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.map-sidebar {
  position: absolute;
  top: 0;
  right: -420px;
  width: 320px;
  height: 100%;
  background: #fff;
  padding: 30px;
  transition: right .3s ease;
  z-index: 5;
}

.map-sidebar.active {
  right: 0;
}

.close-sidebar {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: color-mix(in srgb, var(--secondary) 50%, transparent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.close-sidebar:hover {
  background: #fff;
  border: 1px solid #ccc;
}


.map-wrapper {
  position: relative;
  height: 600px;
  overflow: hidden;

}


/* ==========================================================================
   Wniosek (Application Form) Page
   ========================================================================== */

.wniosek-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.wniosek-addressee {
  text-align: right;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.wniosek-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem;
}

/* Progress bar */
.wniosek-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.wniosek-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.wniosek-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--muted-foreground);
  background: var(--background);
  transition: all 0.3s ease;
}

.wniosek-step-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.wniosek-progress-step.active .wniosek-step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.wniosek-progress-step.active .wniosek-step-label {
  color: var(--primary);
  font-weight: 600;
}

.wniosek-progress-step.completed .wniosek-step-num {
  background: hsl(var(--primary) / 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

.wniosek-progress-step.completed .wniosek-step-label {
  color: hsl(var(--foreground));
}

.wniosek-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 0.75rem;
  margin-bottom: 1.5rem;
}

/* Fieldsets */
.wniosek-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
}

.wniosek-fieldset.active {
  display: block;
  animation: wniosekFadeIn 0.3s ease;
}

@keyframes wniosekFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wniosek-legend {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wniosek-legend-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.wniosek-hint {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  margin-top: -0.25rem;
}

/* Checkbox & Radio */
.wniosek-checkbox-label,
.wniosek-radio-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
}

.wniosek-checkbox-label input[type="checkbox"],
.wniosek-radio-label input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.wniosek-radio-group,
.wniosek-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.wniosek-conditional {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

/* Navigation */
.wniosek-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.wniosek-nav .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: var(--muted);
  border-color: var(--muted-foreground) / 0.3;
}

/* Attachments info */
.wniosek-attachments-info {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.wniosek-attachments-info h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.wniosek-attachments-info ol {
  list-style: decimal;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.wniosek-attachments-info ol li {
  margin-bottom: 0.25rem;
}

/* File upload */
.wniosek-file-upload {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.wniosek-file-upload:hover {
  border-color: var(--primary) / 0.5;
}

.wniosek-file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.wniosek-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  color: var(--muted-foreground);
  text-align: center;
}

.wniosek-file-label svg {
  color: var(--primary) / 0.5;
}

.wniosek-file-label small {
  font-size: 0.75rem;
  opacity: 0.7;
}

.wniosek-file-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.wniosek-file-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--foreground);
  padding: 0.5rem 0.75rem;
  background: var(--muted);
  border-radius: calc(var(--radius) / 2);
}

.wniosek-file-item small {
  margin-left: auto;
  color: var(--muted-foreground);
}

/* RODO */
.wniosek-rodo {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.wniosek-rodo-details {
  margin-top: 0.75rem;
}

.wniosek-rodo-details summary {
  font-size: 0.8125rem;
  color: var(--primary);
  cursor: pointer;
  font-weight: 500;
}

.wniosek-rodo-details summary:hover {
  text-decoration: underline;
}

.wniosek-rodo-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.wniosek-rodo-text ul {
  padding-left: 1rem;
  list-style: disc;
}

.wniosek-rodo-text ul li {
  margin-bottom: 0.25rem;
}

/* Success */
.wniosek-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.wniosek-success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsl(120 40% 50% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: hsl(120 40% 40%);
}

.wniosek-success h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.wniosek-success p {
  color: var(--muted-foreground);
  max-width: 400px;
  margin: 0 auto;
}

/* PDF alt download */
.wniosek-pdf-alt {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--muted);
  border-radius: var(--radius);
  color: var(--muted-foreground);
}

.wniosek-pdf-alt p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.wniosek-pdf-alt a {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
}

.wniosek-pdf-alt a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .wniosek-form {
    padding: 1.5rem;
  }

  .wniosek-progress {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .wniosek-progress-line {
    display: none;
  }

  .wniosek-progress-step {
    flex: 1;
    min-width: 0;
  }

  .wniosek-step-label {
    font-size: 0.625rem;
    white-space: normal;
    text-align: center;
  }

  .wniosek-legend {
    font-size: 1.25rem;
  }

  .wniosek-radio-group,
  .wniosek-checkbox-group {
    flex-direction: column;
    gap: 0;
  }
}

/* ==========================================================================
   Article Page
   ========================================================================== */

.article-page {
  padding-top: 80px;
}

/* Breadcrumb */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
  margin-top: 15px;
}

.article-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

.article-breadcrumb a:hover {
  opacity: 0.7;
}

.article-breadcrumb svg {
  color: var(--border);
  flex-shrink: 0;
}

.article-breadcrumb span {
  color: var(--foreground);
  font-weight: 500;
}

/* Article Header */
.article-header {
  padding: 2.5rem 0 2rem;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-category {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  border-radius: 100px;
}

.article-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.article-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-lead {
  font-size: 1.15rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured Image */
.article-image-wrapper {
  padding-bottom: 2.5rem;
}

.article-figure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.article-hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-figcaption {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  background: color-mix(in srgb, var(--muted) 60%, transparent);
  font-style: italic;
}

/* Article Body */
.article-body-wrapper {
  padding-bottom: 3rem;
}

.article-body {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--foreground);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid color-mix(in srgb, var(--primary) 15%, transparent);
}

.article-body strong {
  color: var(--foreground);
  font-weight: 600;
}

.article-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: none;
}

.article-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

/* Blockquote */
.article-quote {
  position: relative;
  margin: 2.5rem 0;
  padding: 2rem 2rem 2rem 2.5rem;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 4%, transparent),
      color-mix(in srgb, var(--secondary) 12%, transparent));
  border-left: 4px solid var(--primary);
  border-radius: 0 1rem 1rem 0;
}

.article-quote::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3.5rem;
  font-family: var(--font-heading);
  color: color-mix(in srgb, var(--primary) 20%, transparent);
  line-height: 1;
}

.article-quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 0.75rem !important;
}

.article-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

/* Article Footer Meta */
.article-footer-meta {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: var(--muted);
  border-radius: 100px;
  transition: all 0.2s;
}

.article-tag:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-share-label {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.article-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.2s;
}

.article-share-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

/* Related Articles */
.article-related {
  padding: 4rem 0;
  background: color-mix(in srgb, var(--muted) 40%, transparent);
}

.article-related-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.article-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .article-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-related-card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.article-related-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
}

.article-related-card-body {
  padding: 1.5rem;
}

.article-related-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.article-related-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.article-related-card p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.article-related-card time {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--muted-foreground) 70%, transparent);
}

@media (max-width: 767px) {
  .article-title {
    font-size: 1.75rem;
  }

  .article-lead {
    font-size: 1rem;
  }

  .article-quote {
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  }

  .article-footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Rada Profile - Editorial layout */
.rada-profile {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rada-profile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rada-profile:last-of-type {
  border-bottom: none;
}

@media (min-width: 768px) {
  .rada-profile {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 4rem 0;
  }

  .rada-profile-reverse {
    grid-template-columns: 1fr 280px;
  }

  .rada-profile-reverse .rada-profile-image-wrap {
    order: 2;
  }

  .rada-profile-reverse .rada-profile-content {
    order: 1;
  }
}

.rada-profile-image-wrap {
  position: relative;
  width: 220px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rada-profile-image-wrap {
    width: 100%;
    margin: 0;
  }
}

.rada-profile-image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  /* aspect-ratio: 3 / 4; */
}

.rada-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.5s ease;
}

.rada-profile:hover .rada-profile-image img {
  filter: grayscale(0%);
}

.rada-profile-image-border {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid color-mix(in srgb, var(--primary) 25%, transparent);
  border-radius: var(--radius);
  z-index: 1;
  transition: all 0.4s ease;
}

.rada-profile:hover .rada-profile-image-border {
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border-color: color-mix(in srgb, var(--primary) 50%, transparent);
}

.rada-profile-number {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--primary) 8%, transparent);
  z-index: 0;
  line-height: 1;
}

.rada-profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rada-profile-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary));
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.rada-profile-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.rada-profile-subtitle {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.rada-profile-bio {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.rada-profile-bio li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.rada-profile-bio li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 40%, transparent);
}

.rada-profile-fundacja {
  font-size: 0.9rem;
  color: var(--foreground);
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--primary) 5%, transparent);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}


/* Zespół Page - Quick Nav & Collaborators========================================================================== */
.zespol-nav {
  position: sticky;
  top: 70px;
  z-index: 20;
  background: color-mix(in srgb, var(--background) 95%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.zespol-nav-inner {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.zespol-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.zespol-nav-link:hover {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 6%, transparent);
  border-color: color-mix(in srgb, var(--primary) 15%, transparent);
}

.zespol-nav-icon {
  display: flex;
  align-items: center;
  color: inherit;
}

.zespol-wspolpracownicy {
  padding: 5rem 0;
}

.zespol-collab-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .zespol-collab-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.zespol-collab-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.zespol-collab-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zespol-collab-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: color-mix(in srgb, var(--primary) 25%, transparent);
}

.zespol-collab-avatar-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.zespol-collab-role {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
}

.zespol-collab-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.zespol-collab-bio {
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.zespol-collab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.zespol-collab-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: var(--muted);
  padding: 0.25rem 0.6rem;
  border-radius: 1rem;
}

.social-links a {
  display: block;
}

.filmography-item.hidden {
  display: none;
}

.hidden-film {
  display: none;
}


/* ---------- FILM BOARD (dark section) ---------- */
.cine-filmboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.filmboard-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.filmboard-card {
  text-decoration: none;
  background: hsl(224 30% 16%);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.filmboard-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.filmboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px hsl(0 0% 0% / 0.3);
}

.filmboard-sprockets {
  display: flex;
  justify-content: space-around;
  padding: 0.35rem 1rem;
  background: hsl(224 30% 12%);
}

.filmboard-sprockets span {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  background: hsl(224 30% 20%);
  border: 1px solid hsl(224 30% 25%);
}

.filmboard-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.filmboard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.filmboard-card:hover .filmboard-image img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.filmboard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, hsl(0 0% 0% / 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filmboard-card:hover .filmboard-overlay {
  opacity: 1;
}

.filmboard-count {
  font-size: 0.8125rem;
  color: hsl(0 0% 100% / 0.7);
}

.filmboard-view {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--secondary));
  margin-top: 0.35rem;
}

.filmboard-info {
  padding: 1rem 1.25rem 1.25rem;
}

.filmboard-info h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(0 0% 100%);
  margin-bottom: 0.25rem;
}

.filmboard-info p {
  font-size: 0.8125rem;
  color: hsl(0 0% 100% / 0.5);
}

.place-hr {
  border-bottom: 1px solid #4660aa;
}