/* style.css */

:root{
  --bg: #F6E9DF;              /* тёплый беж */
  --bg-dark: #F1E1D6;
  --card: #FFF7F2;            /* светлая беж-карточка */
  --card-hover: #FFF2EA;
  --border: #E7D3C7;
  --border-light: #EEDD D4;

  --text: #6F6A73;            /* спокойный серый */
  --text-light: #8A8490;
  --muted: #8A8490;
  --muted-light: #A8A2AD;

  --primary: #B69586;         /* тауп */
  --primary-light: #C7A79A;
  --primary-dark: #9E7C6F;
  --primary-extra-light: #F3E3DA;

  --shadow: 0 6px 20px rgba(20, 16, 26, 0.04);      /* очень мягко */
  --shadow-lg: 0 12px 32px rgba(20, 16, 26, 0.06);
  --shadow-xl: 0 18px 44px rgba(20, 16, 26, 0.07);

  --transition: all 0.25s ease;
}


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

html, body {
  font-family: "Heebo","Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  /* font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

.section {
  padding: 60px 0;
  scroll-margin-top: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  position: relative;
  background: transparent;
  padding: 88px 0 56px;
  overflow: hidden;
}

.hero-gradient,
.hero::before,
.hero::after {
  pointer-events: none;
  display:none;
}

.hero-inner { position: relative; z-index: 2; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background :var(--bg);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(231, 211, 199, 0.55);
  box-shadow: none;  /* backdrop-filter: blur(12px); */
  /* background: rgba(255, 255, 255, 0.95); */
  /* transition: var(--transition); */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); */
}



.donors-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    grid-column: 1 / -1;
}


.donors-btn-wrapper .btn {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.donors-btn-wrapper .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}
.nav.scrolled {
  background: var(--bg);
  box-shadow: none;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.menu {
  display: none;
  list-style: none;
  gap: 28px;
}

.menu a { 
  position: relative;
  opacity: 0.85; 
  transition: var(--transition); 
  font-weight: 500;
}

.menu a:hover { 
  opacity: 1; 
  color: var(--primary);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media(min-width: 992px) { 
  .menu { 
    display: flex; 
  } 
}

@media(max-width: 991px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    display: none;
    gap: 15px;
  }
  
  .menu.active {
    display: flex;
  }
  
  .menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .menu a:last-child {
    border-bottom: none;
  }
  
  .menu a::after {
    display: none;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.08), transparent);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.06), transparent);
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media(min-width: 992px) { 
  .hero-inner { 
    grid-template-columns: 1.1fr .9fr; 
  } 
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: .2px;
  margin: 20px 0;
  font-weight: 800;
  color: var(--text);
}

.accent { 
  color: var(--primary);
  display: block;
}

.lead {
  color: var(--text-light);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 30px;
}

.chips { 
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin-bottom: 20px;
}

.chip {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

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

.chip i {
  color: var(--primary);
}

.cta { 
  display: flex; 
  gap: 16px; 
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  box-shadow: none;
  padding: 14px 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary{
  background: #9A97A3;     /* как их серая кнопка */
  color: #fff;
}
.btn-primary:hover{
  background: #868390;
  transform: translateY(-1px);
}

.btn-outline { 
  border: 1px solid var(--border); 
  color: var(--text); 
}

.btn-outline:hover {
  background: rgba(154,151,163,0.12);
  border-color: rgba(154,151,163,0.35);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-light { 
  background: #fff; 
  color: var(--primary); 
  border: 2px solid #fff; 
  box-shadow: var(--shadow);
}

.btn-light:hover { 
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 180px at 40% -40%, rgba(37, 99, 235, 0.1), transparent);
  z-index: 1;
}

.text-center {
  text-align: center !important;
  left: auto !important;
  transform: none !important;
}


.section-title {
  text-align: center;
  margin: 0 0 40px 0;
  font-size: 36px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.grid { 
  display: grid; 
  gap: 24px; 
}

.grid-4 { 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
}

.grid-3 { 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
}

.grid-2 { 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
}

.card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: none;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--primary);
  transition: var(--transition);
}

.card:hover::before {
  height: 100%;
}

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

.card.highlight { 
  background: var(--primary); 
  color: #fff; 
  border: none; 
}

.card.highlight::before {
  display: none;
}

.card.highlight .btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
}

.card.highlight .btn-light:hover {
  background: #fff;
}

.step { 
  font-size: 14px; 
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step i {
  color: var(--primary);
}

.badges { 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  margin: 12px 0; 
}

.badge { 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 6px 12px; 
  font-size: 12px; 
  font-weight: 500;
  background: transparent;
  transition: var(--transition);
}

.badge:hover {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.muted { 
  color: var(--muted-light); 
  font-size: 14px;
  margin: 8px 0;
}

.filter-container {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.filter-input, .filter-select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

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

.footer { 
  border-top: 1px solid var(--border-light); 
  padding: 40px 0; 
  background: #fff; 
  margin-top: 60px;
}

.footer-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 20px; 
  flex-wrap: wrap; 
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.links { 
  display: flex; 
  gap: 24px; 
}

.links a { 
  text-decoration: none; 
  color: var(--muted);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.links a:hover {
  color: var(--primary);
}

.links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.links a:hover::after {
  width: 100%;
}

.copy { 
  color: var(--muted); 
  font-size: 14px; 
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.card-img-container {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img {
  transform: scale(1.05);
}

.donor-id {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.input, textarea, select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
  width: 100%;
}

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

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



@media (max-width: 768px) {
  .hero-text h1 { 
    font-size: 36px; 
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .links {
    justify-content: center;
  }
  
  .cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .filter-form {
    grid-template-columns: 1fr;
  }
}

.mb-4 {
  margin-bottom: 24px;
}

.controls { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.placeholder-img {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #999; 
  font-size: 14px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.loader {
  display: none;
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

.input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.lead.text-center {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}



@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ---------- Мобильная адаптация ---------- */
@media (max-width: 992px) {

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 28px;
    text-align: center;
  }

  .hero-text .lead {
    font-size: 16px;
    text-align: center;
  }

  .cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .card {
    padding: 16px;
    border-radius: 16px;
  }

  .card-img-container {
    height: 180px;
  }

  .chips {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
  }

  form .form-group {
    width: 100%;
  }

  .input, textarea, select {
    width: 100%;
    font-size: 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .links, .social-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-inner > div:last-child {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .section {
    padding: 50px 20px;
  }
  .nav .btn {
    display: none;
  }
}

/* Contact footer (full-width, like footer) */
.contact-footer{
  margin-top: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  background: #fff;
}

.contact-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-footer__title{
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.contact-footer__line{
  color: var(--muted);
  font-size: 14px;
  margin: 6px 0;
}

.contact-footer__line a{
  color: var(--text);
  font-weight: 600;
}

.contact-footer__line a:hover{
  color: var(--primary);
}

.contact-footer__social{
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.contact-footer__icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.contact-footer__icon:hover{
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px){
  .contact-footer__inner{
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .contact-footer__social{
    justify-content: center;
  }
}


.brand-logo-link{
  display: flex;
  align-items: center;
  height: 80px; /* высота навбара */
}

.brand-logo{
  height: 50px;     /* подгони под свой прямоугольник */
  width: auto;
  max-width: 240px; /* чтобы не ломало меню */
  object-fit: contain;
  display: block;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.menu{
  list-style:none;
  display:flex;
  gap:22px;
  align-items:center;
  margin:0;
  padding:0;
}

.menu a{
  opacity:0.85;
  font-weight:500;
  transition: var(--transition);
  position: relative;
}

.menu a:hover{
  opacity:1;
  color: var(--primary);
}

.menu a::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius:2px;
}

.menu a:hover::after{ width:100%; }

.menu-mobile{ display:none; }

@media (max-width: 991px){
  .menu-desktop{ display:none; }
  .mobile-menu-btn{ display:flex; }

  .menu-mobile{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    padding:16px 20px;
    box-shadow: var(--shadow-lg);
    border-top:1px solid var(--border);
    gap:12px;
    display:none;
  }
  .menu-mobile.active{ display:flex; }

  .menu-mobile a::after{ display:none; }
}


/* --- Footer like neta-birth --- */
.site-footer{
  margin-top: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(231, 211, 199, 0.55);
  background: #fff;
}

.site-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 420px 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.site-footer__map iframe{
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 8px;
}

.site-footer__title{
  font-weight: 700;
  color: #B69586; /* под твой primary */
  margin-bottom: 16px;
  font-size: 18px;
}

.site-footer__links{
  display: grid;
  gap: 12px;
}

.site-footer__links a{
  color: #6F6A73;
  font-weight: 500;
}

.site-footer__links a:hover{
  color: #3f3a44;
}

.site-footer__lines{
  display: grid;
  gap: 12px;
}

.site-footer__lines a{
  color: #6F6A73;
  font-weight: 500;
}

.site-footer__lines a:hover{
  color: #3f3a44;
}

.site-footer__addr{
  color: #6F6A73;
  line-height: 1.75;
  margin-top: 6px;
}

.site-footer__social{
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.site-footer__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #2F3B4B; /* как у них тёмные круги */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.site-footer__icon:hover{
  transform: translateY(-1px);
  opacity: .9;
}

@media (max-width: 980px){
  .site-footer__inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .site-footer__map iframe{
    height: 240px;
  }
}


.hero-text--center{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text--center .lead{
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-text--center .chips{
  justify-content: center;
}

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

/* Center hero on index */
.hero .hero-inner{
  grid-template-columns: 1fr !important;
  justify-items: center;
}

.hero .hero-text{
  width: 100%;
  max-width: 920px;
}

/* optional: buttons center even without extra class */
.hero .cta{
  justify-content: center;
}
/* HARD center hero content */
.hero .container.hero-inner{
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  width: 100% !important;
}

.hero .hero-text{
  width: 100% !important;
  max-width: 920px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero .chips{
  justify-content: center !important;
}

.hero .cta{
  justify-content: center !important;
}


/* center the hero lead paragraph */
.hero .hero-text--center .lead{
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* на всякий случай, если hero-text--center не стоит */
.hero .hero-text .lead{
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero .hero-text--center .cta{ justify-content: center !important; }

/* Nav text color */
.nav,
.nav a,
.menu a {
  color: rgb(30, 36, 73) !important;
}

/* Hover — чуть мягче, но в той же гамме */
.menu a:hover {
  color: rgb(30, 36, 73) !important;
  opacity: 1;
}

/* Бургер (мобильное меню) */
.mobile-menu-btn span {
  background: rgb(30, 36, 73);
}
.nav .btn {
  color: #fff !important;
}

.auth-card h1{
  margin: 0 0 18px 0;     /* убираем верхний отступ и задаём нормальный низ */
  line-height: 1.2;
}

.auth-card{
  padding-top: 28px;      /* если надо “воздуха” сверху */
}
.section-title{
  left: auto !important;
  transform: none !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}
.section-title::after{
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* =========================
   Ultra tight spacing
========================= */

.section{
  padding: 22px 0 !important;
}

.hero{
  padding: 42px 0 22px !important;
}

/* заголовки */
.section-title{
  margin: 0 0 14px 0 !important;
}
.section-title::after{
  bottom: -6px !important;
  height: 3px !important;
}

/* текст */
.lead{
  margin-bottom: 10px !important;
}
p{
  margin: 0 0 8px 0 !important;
  line-height: 1.55;
}

/* hero внутренности */
.chips{
  margin: 10px 0 10px !important;
}
.cta{
  margin-top: 12px !important;
  gap: 10px !important;
}

/* сетки/карточки */
.grid{
  gap: 14px !important;
}
.card{
  padding: 16px !important;
  border-radius: 16px !important;
}

.card-img-container{
  height: 170px !important;
  margin-bottom: 12px !important;
}

/* доноры-кнопка */
.donors-btn-wrapper{
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

/* контакт/футер */
.site-footer{
  margin-top: 12px !important;
  padding: 16px 0 !important;
}
.site-footer__map iframe{
  height: 220px !important;
}
