:root{
      --bg:#1b3069;
      --bg-soft:#233d84;
      --primary:#0F52BA;
      --primary-soft:#4f7fd4;
      --text:#eef3ff;
      --muted:#b9c6ea;
      --line:rgba(255,255,255,0.14);
      --card:rgba(255,255,255,0.08);
      --pink:#d98ccf;
      --pink-strong:#e6a2db;
      --white:#ffffff;
      --shadow:0 20px 50px rgba(7,16,44,0.35);
      --radius:24px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Manrope',sans-serif;
      background:
        /* linear-gradient(135deg, var(--bg) 0%, #213b7d 45%, #1b3069 100%); */
        linear-gradient(135deg, var(--bg) 0%, #2f5580 45%, #2d486b 100%);
      color:var(--text);
      font-size:18px;
    }

    /* p, span, li, .text-justify{
      text-align: justify; 
      hyphens: auto; 
    } */


    .container{
      width:min(1180px, calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:20;
      backdrop-filter:blur(12px);
      background:rgba(16,29,68,0.6);
      border-bottom:1px solid rgba(255,255,255,0.08);
    }

.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand{
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 22px;
}

.brand span{
  color: var(--pink);
}

.nav-mobile{
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav-toggle{
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2){
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px){
  .nav-toggle{
    display: inline-flex;
  }

  .nav-links{
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 220px;
    padding: 0 14px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transform-origin: top right;
    border-radius: 18px;
    background: rgba(19, 31, 68, 0.96);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    backdrop-filter: blur(14px);
    transition:
      max-height .38s ease,
      opacity .24s ease,
      transform .32s ease,
      padding .32s ease;
    z-index: 30;
  }

  .nav-links a{
    width: 100%;
    padding: 8px 0;
  }

  .nav-links.is-open{
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 14px;
  }
}

    .stupava-link{
      color:var(--white);
      text-decoration:none;
    }

    .hero{
      padding:40px 0 0px;
      position:relative;
      overflow:hidden;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:40px;
      align-items:center;
    }

    .eyebrow{
      display:inline-block;
      padding:10px 14px;
      background:rgba(255,255,255,0.08);
      border:1px solid rgba(255,255,255,0.12);
      border-radius:999px;
      color:#d7e2ff;
      font-size:14px;
      margin-bottom:18px;
    }

    h1{
      font-size: clamp(18px, 5vw, 32px);
      line-height:1.2;
      margin:0 0 16px;
      text-transform:uppercase;
      text-align: start;
    }

    .hero-h1{
      min-width: 25ch;
    }

    .hero-copy{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .lead{
      font-size:18px;
      line-height:1.65;
      color:var(--muted);
      max-width:46ch;
      margin-bottom:14px;
    }

    .candidate{
      margin:28px 0;
      padding-left:18px;
      border-left:3px solid var(--pink);
    }

    .candidate .name{
      display:block;
      font-size:clamp(28px, 4vw, 42px);
      font-weight:800;
      color:var(--pink-strong);
      line-height:1.05;
    }

    .candidate .sub{
      display:block;
      margin-top:8px;
      font-size:17px;
      color:#d9e3ff;
      text-transform:uppercase;
      letter-spacing:.06em;
    }

    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:24px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:0 18px;
      border-radius:999px;
      text-decoration:none;
      font-weight:700;
      transition:.2s ease;
    }

    .btn-primary{
      background:var(--pink);
      border-color: rgba(255,255,255,0.28);
      color:#1d2144;
    }

    .btn-secondary{
      border:1px solid rgba(255,255,255,0.18);
      color:var(--white);
      background:rgba(255,255,255,0.06);
    }

    .socials{
      height: 30px;
      width: 30px;
    }

    .hero-photo-wrap{
      position:relative;
    }

    .photo-card{
      background:linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      border:1px solid rgba(255,255,255,0.12);
      border-radius:32px;
      padding:18px;
      box-shadow:var(--shadow);
      transform:skewY(-4deg);
    }

    .photo-inner{
      transform:skewY(4deg);
      border-radius:24px;
      overflow:hidden;
      aspect-ratio:4/5;
    }

    .photo-inner img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .diagonal-band{
      margin-top:36px;
      transform:skewY(-3deg);
    }

    .diagonal-band .inner{
      transform:skewY(3deg);
      background:rgba(255,255,255,0.08);
      border:1px solid rgba(255,255,255,0.1);
      border-radius:28px;
      padding:24px;
      display:grid;
      /* grid-template-columns:repeat(3,1fr); */
      gap:18px;
    }

    section{
      padding:70px 0 0px;
      scroll-margin-top: 20px;
    }

    .section-title{
      font-size:clamp(20px, 6vw, 44px);
      line-height:1.05;
      margin:0 0 14px;
      text-transform:uppercase;
    }

    .section-text{
      color:var(--muted);
      /* max-width:72ch; */
      margin-bottom:24px;
      line-height:1.7;
    }

    

    .accordion{
      display:grid;
      gap:14px;
    }

    .item{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }

    .item button{
      width:100%;
      background:none;
      border:none;
      color:var(--white);
      padding:20px 22px;
      text-align:left;
      font:inherit;
      font-weight:800;
      font-size:18px;
      display:flex;
      justify-content:space-between;
      gap:20px;
      cursor:pointer;
    }

    .item button span:last-child{
      color:var(--pink);
      font-size:24px;
      line-height:1;
    }

.content{
  height: 0;
  overflow: hidden;
  padding: 0 22px;
  opacity: 0;
  transform: translateY(-10px);
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
  transition:
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    transform 0.35s ease,
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.content strong{
  /* display:block; */
  color:var(--white);
  margin-bottom:14px;
}

.content li::marker {
  color: var(--white);
}

.content p, .content li{
  margin:0 0 10px;
}

.item.active .content{
  opacity:1;
  transform:translateY(0);
  padding:0 22px 22px;
}

.districts{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.district{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.district-header{
  display: flex;
  align-items: center;
  gap: 12px;
}

.district-header h3{
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: var(--white);
}

.district-header::after{
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}


.people{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.person{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
  min-height: 100%;
  order: 0;
  height: 100%;
  scroll-margin-top: 80px;
}

.person:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.22);
}

.person:hover .person-image{
  transform: scale(1.04);
}

.person-media{
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}

.person-image{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.person-body{
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  gap: 10px;
}

.person-main{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

/* .person strong{
  display: block;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
} */

.person span,
.person p, .person li{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.person-expand-a{
  margin-top: auto;
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.person-expand-a:hover{
  background: var(--line);
  border-color: rgba(255,255,255,0.28);
}

.person-btn-expand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-top: auto;
  align-self: flex-end;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--white);
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.person-full{
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    transform 0.25s ease;
}

.person-full-inner{
  padding-top: 0;
}

.person-full p{
  margin: 0 0 10px;
  line-height: 1.7;
}

.person-full p:last-child{
  margin-bottom: 0;
}

.person.expanded{
  /* order: -1; */
  grid-column: 1 / -1;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: start;
  column-gap: 24px;
  row-gap: 10px;
}

/* .person.expanded .person-image{
  width: 220px;
  height: 275px;
  object-fit: cover;
} */

.person.expanded .person-body{
  grid-column: 2;
  min-height: 438px;
  justify-content: space-between;
}

.person.expanded .person-full{
  opacity: 1;
  transform: translateY(0);
}

.person.expanded .person-full-inner{
  padding-top: 2px;
}

.footer{
  padding: 80px 0 10px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner{
  display: flex;
  justify-content: center;
}

.footer-contact-box{
  width: 100%;
  max-width: 820px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.footer-kicker{
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-title{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  color: var(--white);
}

.footer-text{
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
  font-size: 18px;
}

.footer-label{
  display: inline-block;
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-textarea{
  width: 100%;
  min-height: 180px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font: inherit;
  line-height: 1.65;
  resize: none;
  box-sizing: border-box;
}

.footer-textarea::placeholder{
  color: rgba(255,255,255,0.45);
}

.footer-textarea:focus{
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(217,140,207,0.16);
}

.footer-send-wrap{
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.3s ease,
    max-height 0.3s ease,
    margin-top 0.3s ease,
    visibility 0.3s ease;
}

.footer-send-wrap.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 80px;
  pointer-events: auto;
}

.footer-send-btn{
  display: inline-flex;
}

.footer-meta{
  width: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  padding: 10px;
}

.footer-copy,
.footer-consent{
  margin: 0;
}

.footer-copy{
  text-align: left;
}

.footer-consent{
  text-align: right;
}

.footer-gdpr{
  color: var(--white);
  text-decoration: none;
}

.footer-gdpr:hover{
  text-decoration: underline;
}

@media (max-width: 800px){
  .footer-meta{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-consent{
    text-align: left;
  }
}

#email{
  min-height: 0px;
}

@media (max-width: 980px){
  .hero-grid,
  .info-grid{
    grid-template-columns: 1fr;
  }

  .diagonal-band,
  .people{
    grid-template-columns: 1fr 1fr;
  }
  
  .person{
    scroll-margin-top: 0px;
  }

  .brand{
      font-size:18px;
    }
}

@media (max-width: 700px){
  .people{
    grid-template-columns: 1fr;
  }

  .person.expanded{
    grid-template-columns: 1fr;
  }

  .person.expanded .person-media,
  .person.expanded .person-body{
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-width: 0;
  }

  .person.expanded .person-image{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px){
  .diagonal-band .inner,
  .people{
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-inner,
  .diagonal-band,
  .diagonal-band .inner{
    transform: none;
  }

  .footer{
    padding: 56px 0 15px;
  }

  .footer-contact-box{
    padding: 20px;
    border-radius: 20px;
  }

  .footer-textarea{
    min-height: 150px;
    padding: 16px;
  }
}

 .news-page-main h2{
  margin: 0 0 14px;
  font-size: clamp(20px, 6vw, 44px);
  text-transform: uppercase;
 }

 .news-page-main h3{
  text-transform: uppercase;
  font-size: clamp(18px, 5vw, 32px);
 }
 
 .news-h1{
  line-height: 1.2;
  text-align: start;
  margin: 0 0 14px;
  font-size: clamp(20px, 6vw, 44px);
  text-transform: uppercase;
 }

.news-page{
  padding: 10px 0 0;
}

.news-page h2{
  margin: 0 0 14px;
  font-size: clamp(20px, 6vw, 44px);
  text-transform: uppercase;
}

.news-hero{
  padding: 27px 0 0px;
  scroll-margin-top: 69px;
}

.news-featured-content h3{
  margin: 0 0 16px;
  font-size: clamp(19px, 4vw, 32px);
  line-height: 1.15;
}

.news-featured{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(7,16,44,0.22);
}

.news-preview{
  position: relative;
  max-height: 9.2em;
  overflow: hidden;
}

.news-preview p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.news-actions{
  display: flex;
  justify-content: flex-end;
}

.news-preview{
  max-height: 9.2em;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 25%,
    rgba(0,0,0,0.55) 52%,
    rgba(0,0,0,0.25) 88%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 25%,
    rgba(0,0,0,0.55) 52%,
    rgba(0,0,0,0.25) 88%,
    rgba(0,0,0,0) 100%
  );
}

.news-featured,
.news-card,
.news-side-card{
  background:var(--card);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow);
  overflow:visible;
  margin-bottom: 20px;
  padding: 20px 24px;
}

.news-featured{ display:flex; flex-direction:column; }
.news-featured-image{ width:100%; display:block; }
.news-featured-image img,
.news-card img,
.news-side-card img{
  width:100%; height:100%; object-fit:cover; display:block;
}

.news-article {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(7,16,44,0.22);
  margin-bottom: 60px;
  scroll-margin-top: 80px;
}

.news-image {
  border-radius: 24px;
}

/* .news-text{
color: var(--muted);
} */

.archive-list{
  display: grid;
  gap: 18px;
}

.archive-item{
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
}

.archive-date{
  color: #d7e2ff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.archive-item h3{
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: start;
}

.archive-item p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px){
  .news-layout,
  .news-grid,
  .archive-item{
    grid-template-columns: 1fr;
  }

  .news-hero h1{
    max-width: none;
  }
}

@media (max-width: 600px){
      section {
        padding: 27px 0 0px;
        scroll-margin-top: 77px;
      }

      .hero{
        padding: 27px 0 0px;
      }

      .news-hero{
        scroll-margin-top: 100px;
      }

      .news-article{
        scroll-margin-top: 100px;
      }
    }


.error-page{
  min-height: 97vh;
}

.error-main{
  min-height: 97vh;
  display: flex;
  align-items: center;
}

.error-section{
  width: 100%;
  padding: 100px 0;
}

.footer-error{
  min-height: 3vh;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.footer-meta-error{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  padding: 10px;
}

.error-box{
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-code{
  display: inline-block;
  margin-bottom: 18px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}

.error-title{
  margin: 0 0 14px;
  max-width: none;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  text-align: center;
}

.error-text{
  margin: 0 auto 28px;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.error-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.error-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.error-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
}

.error-links a:hover{
  color: var(--white);
}

@media (max-width: 640px){
  .error-section{
    padding: 72px 0;
  }

  .error-box{
    padding: 28px 20px;
    border-radius: 22px;
  }

  .error-actions{
    flex-direction: column;
  }

  .error-actions .btn{
    width: 100%;
  }
}

.gdpr-page{
  padding: 72px 0 24px;
}

.gdpr-card{
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.gdpr-title{
  margin: 0 0 16px;
  max-width: none;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  text-transform: uppercase;
}

.gdpr-intro{
  margin: 0 0 28px;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.gdpr-sections{
  display: grid;
  gap: 22px;
}

.gdpr-block{
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.gdpr-block h2{
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--white);
}

.gdpr-block p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.gdpr-block p:last-child{
  margin-bottom: 0;
}

.gdpr-block ul{
  margin: 0 0 12px 20px;
  padding: 0;
  color: var(--muted);
}

.gdpr-block li{
  margin: 0 0 8px;
  line-height: 1.7;
}

.gdpr-block a{
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gdpr-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.footer-copy,
.footer-consent{
  margin: 0;
}

.footer-copy{
  text-align: left;
}

.footer-consent{
  text-align: right;
}

.footer-gdpr{
  color: var(--white);
  text-decoration: none;
}

.footer-gdpr:hover{
  text-decoration: underline;
}

@media (max-width: 640px){
  .gdpr-page{
    padding-top: 48px;
  }

  .gdpr-card{
    padding: 22px 18px;
    border-radius: 22px;
  }

  .gdpr-block{
    padding: 18px;
    border-radius: 18px;
  }

  .gdpr-actions{
    flex-direction: column;
  }

  .gdpr-actions .btn{
    width: 100%;
  }

  .footer-meta{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-consent{
    text-align: left;
  }
}

.cookie-box{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(360px, calc(100% - 24px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(16,29,68,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 50px rgba(7,16,44,0.35);
  backdrop-filter: blur(14px);
  z-index: 1000;
}

.cookie-box.is-hidden{
  display: none;
}

.cookie-box-title{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  text-align: left;
}

.cookie-box-text{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
}

.cookie-box-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-box-actions .btn{
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.cookie-box-link{
  display: inline-block;
  margin-top: 12px;
  color: var(--white);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 400px){
  .cookie-box{
  position: fixed;
  right: 12px;
  bottom: 12px;
  width: min(360px, calc(100vw - 24px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(16,29,68,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 50px rgba(7,16,44,0.35);
  backdrop-filter: blur(14px);
  z-index: 9999;
}
}

.article-subtitle {
  font-size: 20px;
  color: var(--white);
}

.article-pink {
  color: var(--pink);
  font-weight: bold;
}
