:root {
  --jgl-green-dark: #064e3b;
  --jgl-green: #047857;
  --jgl-green-soft: #0f766e;
  --jgl-yellow: #facc15;
  --jgl-cream: #f9fafb;
  --jgl-bg: #f3f4f6;
  --jgl-text: #111827;
  --jgl-muted: #6b7280;
  --jgl-border: #e5e7eb;
  --jgl-radius-lg: 18px;
  --jgl-radius-md: 14px;
  --jgl-radius-sm: 10px;
  --jgl-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --jgl-shadow-light: 0 10px 25px rgba(15, 23, 42, 0.08);
}

/* базовый размер 17px */
html {
  font-size: 17px;
}

/* Reset & base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--jgl-bg);
  color: var(--jgl-text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--jgl-green-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
  color: var(--jgl-muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.section-header {
  text-align: left;
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-header p {
  max-width: 540px;
}

/* Top bar */

.top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--jgl-border);
  font-size: 1rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
}

.top-bar-left span,
.top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--jgl-muted);
}

.top-bar-left span + span {
  margin-left: 1rem;
}

.top-bar a {
  color: var(--jgl-muted);
}

.top-bar i {
  font-size: 1rem;
}

/* Header / nav */

.site-header {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #022c22;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--jgl-text);
}

.logo-subtitle {
  font-weight: 500;
  font-size: 1rem;
  color: var(--jgl-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--jgl-green-soft);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.25rem;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--jgl-green-soft), var(--jgl-green));
  color: #ffffff;
  box-shadow: var(--jgl-shadow-light);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--jgl-shadow-soft);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--jgl-green-soft);
  border-color: rgba(5, 150, 105, 0.35);
}

.btn-outline:hover {
  background-color: #ecfdf5;
}

.btn-nav {
  padding-inline: 1.8rem;
}

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Pills & badges */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  color: #047857;
  background-color: #dcfce7;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
}

.badge-green {
  background-color: #dcfce7;
  color: #047857;
}

.badge-yellow {
  background-color: #fef9c3;
  color: #92400e;
}

.badge-soft {
  background-color: #e0f2fe;
  color: #0369a1;
}

/* Hero */

.hero {
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(circle at top left, #bbf7d0 0, #f3f4f6 45%, #ffffff 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.hero-lead {
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
}

.hero-benefits {
  margin-bottom: 1.3rem;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  color: var(--jgl-muted);
}

.hero-benefits i {
  color: var(--jgl-green-soft);
  margin-top: 0.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 1rem;
  color: var(--jgl-muted);
}

.hero-meta i {
  color: #f59e0b;
}

/* Hero media cards */

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-card {
  background-color: #ffffff;
  border-radius: var(--jgl-radius-lg);
  box-shadow: var(--jgl-shadow-soft);
  padding: 1rem;
}

.hero-card-main {
  padding: 0.9rem;
  position: relative;
}

.hero-main-image {
  border-radius: var(--jgl-radius-md);
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.hero-card-body {
  padding: 0.9rem 0.2rem 0.2rem;
}

.hero-card-body h3 {
  font-size: 1.25rem;
}

.hero-card-body p {
  margin-bottom: 0.7rem;
}

.hero-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--jgl-muted);
}

.hero-card-meta i {
  color: var(--jgl-green-soft);
}

.hero-card-small {
  position: absolute;
  right: -10px;
  border-radius: var(--jgl-radius-md);
  box-shadow: var(--jgl-shadow-light);
}

.hero-card-stats {
  top: -20px;
  width: 72%;
  background: #022c22;
  color: #e5fdf4;
}

.hero-card-stats .hero-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 1rem;
  color: #a7f3d0;
}

.hero-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-progress {
  background-color: #064e3b;
  border-radius: 999px;
  overflow: hidden;
  height: 8px;
  margin-bottom: 0.4rem;
}

.hero-progress-inner {
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, #facc15, #22c55e);
}

.hero-stat-text {
  font-size: 1rem;
  color: #d1fae5;
}

.hero-card-profile {
  bottom: -30px;
  left: 6%;
  width: 70%;
  background-color: #ffffff;
}

.hero-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.hero-profile img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.hero-profile h4 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.hero-profile span {
  font-size: 1rem;
  color: var(--jgl-muted);
}

/* Cards grid */

.card-grid {
  display: grid;
  gap: 1.7rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background-color: #ffffff;
  border-radius: var(--jgl-radius-md);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--jgl-shadow-light);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: #047857;
}

.card-meta-list {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: var(--jgl-muted);
}

.card-meta-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.card-meta-list i {
  color: var(--jgl-green-soft);
}

/* About section */

.section-about {
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.about-list {
  margin-top: 1rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
  color: var(--jgl-muted);
}

.about-list i {
  margin-top: 0.25rem;
  color: var(--jgl-green-soft);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.about-card {
  background-color: #f9fafb;
  border-radius: var(--jgl-radius-md);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.about-card-secondary {
  background-color: #ecfdf5;
}

.about-steps {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--jgl-muted);
}

.about-steps li {
  margin-bottom: 0.25rem;
}

.about-tagline {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--jgl-green-dark);
}

/* Warum section */

.section-why {
  background-color: #f1f5f9;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.why-text p {
  margin-bottom: 1rem;
}

.why-list {
  margin-top: 0.5rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  color: var(--jgl-muted);
}

.why-list i {
  margin-top: 0.25rem;
  color: var(--jgl-green-soft);
}

.why-features {
  align-self: stretch;
}

/* Feature cards */

.feature-card {
  background-color: #ffffff;
  border-radius: var(--jgl-radius-md);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #fef9c3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  color: #92400e;
}

/* Program cards */

.program-card {
  background-color: #ffffff;
  border-radius: var(--jgl-radius-md);
  box-shadow: var(--jgl-shadow-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.program-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.program-body {
  padding: 1rem 1.1rem 1.2rem;
}

.program-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.program-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.program-meta-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--jgl-muted);
}

.program-meta-row i {
  color: var(--jgl-green-soft);
}

/* Section eyebrow */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background-color: #ecfdf5;
  color: #047857;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.section-eyebrow-light {
  background-color: rgba(15, 23, 42, 0.5);
  color: #e5e7eb;
}

/* Events */

.event-card {
  background-color: #ffffff;
  border-radius: var(--jgl-radius-md);
  padding: 1.4rem 1.4rem;
  box-shadow: var(--jgl-shadow-light);
}

.event-card h3 {
  font-size: 1.2rem;
}

.event-meta {
  margin-top: 0.7rem;
  font-size: 1rem;
  color: var(--jgl-muted);
}

.event-meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.event-meta i {
  color: var(--jgl-green-soft);
}

/* Section with background images */

.section-formats,
.section-events {
  position: relative;
  color: #e5e7eb;
}

.section-formats {
  background-image: url("images/bg-lab-pattern.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-events {
  background-image: url("images/bg-events.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88),
    rgba(15, 118, 110, 0.9)
  );
  z-index: 0;
}

.section-events-overlay {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(8, 47, 73, 0.9)
  );
}

.section-formats-inner,
.section-events-inner {
  position: relative;
  z-index: 1;
}

.section-formats .section-header h2,
.section-events .section-header h2 {
  color: #f9fafb;
}

.section-formats .section-header p,
.section-events .section-header p {
  color: #e5e7eb;
}

.section-formats .section-eyebrow,
.section-events .section-eyebrow {
  background-color: rgba(15, 23, 42, 0.5);
  color: #e5e7eb;
}

/* Testimonials */

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--jgl-radius-md);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--jgl-shadow-light);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.testimonial-header img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-header span {
  font-size: 1rem;
  color: var(--jgl-muted);
}

.testimonial-rating {
  margin-top: 0.6rem;
  color: #f59e0b;
}

/* Kontakt */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-info h2 {
  margin-bottom: 0.4rem;
}

.contact-list {
  margin: 1.4rem 0 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
  color: var(--jgl-muted);
}

.contact-list i {
  color: var(--jgl-green-soft);
}

.contact-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.contact-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: #e5f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social i {
  font-size: 1.1rem;
  color: #1d4ed8;
}

/* Form */

.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: var(--jgl-radius-lg);
  box-shadow: var(--jgl-shadow-soft);
  padding: 1.7rem 1.6rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
}

input,
select,
textarea {
  border-radius: 0.9rem;
  border: 1px solid var(--jgl-border);
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--jgl-green-soft);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.4);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 1rem;
  color: var(--jgl-muted);
}

/* Footer (тёмный) */

.site-footer {
  background: radial-gradient(circle at top, #020617 0, #000000 60%);
  color: #e5e7eb;
  padding-top: 3rem;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 0 1.5rem 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e5e7eb;
  text-decoration: none;
}

.footer-logo .logo-mark {
  background: radial-gradient(circle at 30% 20%, #bbf7d0, #16a34a);
}

.footer-text {
  margin-top: 0.8rem;
  color: #9ca3af;
}

.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #e5e7eb;
}

.footer-list {
  font-size: 1rem;
}

.footer-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-list a:hover {
  color: #a5b4fc;
}

.footer-list i {
  color: #6ee7b7;
}

.footer-bottom {
  border-top: 1px solid #111827;
  margin-top: 0.5rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem 1.4rem;
  font-size: 1rem;
  color: #9ca3af;
}

.footer-bottom-social {
  display: flex;
  gap: 0.7rem;
}

.footer-bottom-social a {
  color: #9ca3af;
}

.footer-bottom-social a:hover {
  color: #e5e7eb;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 720px;
  width: calc(100% - 3rem);
  background-color: #020617;
  color: #e5e7eb;
  border-radius: var(--jgl-radius-lg);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
  padding: 1.2rem 1.3rem;
  z-index: 60;
}

.cookie-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text h3 {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.cookie-text p {
  margin: 0;
  color: #d1d5db;
}

.cookie-text a {
  color: #a5b4fc;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner.cookie-hidden {
  display: none;
}

/* Utilities */

.card-grid-3 > * {
  min-width: 0;
}

.card-grid-4 > *,
.card-grid-2 > * {
  min-width: 0;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero-media {
    margin-top: 1.2rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card-small {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 0.8rem;
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid-4,
  .card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 0 1.5rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border-top: 1px solid var(--jgl-border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.nav-open {
    max-height: 280px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .card-grid-3,
  .card-grid-4,
  .card-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    bottom: 0.7rem;
    padding: 1rem 1rem;
  }
}
