/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #222;
  background: #f2f2f2;
}

/* HEADER */
.site-header {
  position: sticky;  
  top: 0;
  z-index: 1000;

  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  text-decoration: none;
  color: #222;
  font-size: 1.2rem;
  /* color: #6699cc; */
  opacity: 0.8;
}

.logo:hover{
  color: #6699cc;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center; /* 👈 това центрира по Y */
}

.header-actions a,
.header-actions button {
  margin-left: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #444;
}

/* HERO */
.project-hero {
  position: relative;
  z-index: 1;
}

.project-hero img {
  width: 100%;
  /* height: 70vh; */
  height: auto;
  /* object-fit: cover; */
  display: block;
}

/* .project-hero-overlay {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  padding: 1.5rem 2rem;
  max-width: 720px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
} */

/* .project-subtitle {
  color: #e2aa00;
  font-weight: 700;
} */

/* ======================
   MENU BUTTON + OVERLAY
====================== */

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.menu-toggle img {
  height: 20px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .menu-toggle img {
    height: 18px;
    margin-right: 1.5rem;
  }
}

/* ======================
   SHARE BUTTON
====================== */

.share-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  color: #666;
}

.share-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.share-toggle:hover {
  color: #6699cc;
}

@media (max-width: 768px) {
  .share-toggle svg {
    width: 20px;
    height: 20px;
  }
}

/* ======================
   LANGUAGE LABEL
====================== */

.lang-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
  margin-right: 1rem;
  letter-spacing: 0.02em;
  user-select: none;
}

/* ======================
   LANGUAGE TOGGLE
====================== */

.lang-toggle {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
}

.lang-toggle button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  margin: 0;
}

.lang-toggle button:hover {
  opacity: 1;
  color: #f2b705;
}

.lang-toggle .lang-sep {
  margin: 0 0.3rem;
  opacity: 0.4;
}

/* ACTIVE LANGUAGE */
body.lang-bg .lang-toggle button[data-lang="bg"],
body.lang-en .lang-toggle button[data-lang="en"] {
  opacity: 1;
  color: #222;
  cursor: default;
}

/* ======================
   LANGUAGE SWITCH
====================== */

.lang {
  display: none;
}

body.lang-bg .lang-bg {
  display: block;
}

body.lang-en .lang-en {
  display: block;
}

body.lang-en .project-content {
  line-height: 1.8;
}


body.lang-bg .log-meta.lang-bg,
body.lang-en .log-meta.lang-en {
  display: block;
}

/* =========================
   PROJECT HEADLINE
========================= */

.project-headline {
  text-align: center;
  margin-bottom: 3rem;
}

/* TOP META */
.project-headline-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #111;
}

/* DIVIDERS */
.headline-divider {
  width: 100%;
  margin: 0.8rem 0 1.6rem;
}

.headline-divider.thick {
  height: 5px;
  background: #000;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.headline-divider.thin {
  height: 1px;
  background: #000;
  margin-top: 2rem;
}

/* TITLE */
.project-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.5;
  margin: 0 0 1.2rem;
  color: #6699cc;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  
  position: relative;
  z-index: 2;
}

/* SUBTITLE LINE */
.project-subline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.project-subline .line {
  flex: 1;
  height: 5px;
  background: #000;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.project-subtitle {
  font-size: 2.2rem;
  font-weight: 300;
  white-space: nowrap;
  color: #f2b705;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* == PROJECT INTRO == */

.project-intro {
  display: flex;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}

.project-description {
  max-width: 55%;
  text-align: left;
  /* text-indent: 1.2rem; */
  line-height: 1.7;
  font-size: 1.05rem;
  color: #222;
  /* color: #555; */
  position: relative;
}

.project-description .end-dot {
  display: inline-block;
  transform: scale(1.5);
  transform-origin: center;
  /* opacity: 0.6; */
  margin-left: 0.1em;
}

/* DROP CAP */
.project-description::first-letter {
  float: left;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 3.4rem;
  line-height: 1;
  padding-left: 1.2rem;
  padding-right: 0.3rem;
  /* padding-top: 0.1rem; */
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}


/* ======================== */


/* SCIENTIFIC BACKGROUND */
.project-background {
  background-image: url("media/bgr.jpg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  padding: 4rem 1rem;
}

/* CENTRAL PANEL */
.project-panel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 16px;
  /* border-radius: 0 0 16px 16px; */
  z-index: 2;
  margin-top: -300px;   /* тук играеш */
}

/* DIVIDER */
.panel-divider {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 2rem 0;
}

/* ======================
 PROJECT CONTENT
 ===================== */

 .project-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.project-content p {
  margin: 0 0 1.4rem;
  text-align: left;
  text-indent: 1.2rem;
}

.project-content .infoblock {
  padding: 0.6rem 0.8rem;
  margin: 1.5rem 0 1.4rem;
  

  background: linear-gradient(
    to bottom,
    #fff6d9,
    #fffbf1
  );

  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
  text-indent: 0rem;
  /* max-width: 48%; */
  /* display: flow-root; */
}

.project-content .italic {
  font-style: italic;
}
.project-content .compressed {
  margin: 0 0 0.5rem;
  color: #245db3;
}


.project-content .clear {
  clear: both;
}

/* ако някога текст след heading с под-class 'clear' изглежда малко странно, активирай това: */
/* .project-content p.clear {
  text-indent: 0;
} */

.project-content h2 {
  font-size: 1.6rem;
  /* margin: 2.8rem 0 1.2rem; */
  margin: 2.8rem 0 0.5rem;
  color: #6699cc;
  font-weight: 600;
}

.project-content h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.8rem;
  color: #555;
  font-weight: 600;
}



/* ======================
   PROJECT QUOTES
===================== */

.project-quote {
  max-width: 65%;
  margin: 3rem auto;
  padding: 1.2rem 1.6rem 1.2rem 1.8rem;

  font-style: italic;
  color: #444;
  line-height: 1.7;

  background: #fff;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.08); */
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  position: relative;
}

.project-quote.blue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 5px;
  background: #6699cc;
  box-shadow: 0 0 6px rgba(102,153,204,0.6);
}

.project-quote.gold::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 5px;
  background: #f2b705;
  box-shadow: 0 0 6px rgba(242,183,5,0.5);
}

/* Поставяне на QUOTE СИМВОЛ от дясно на текста */
/* .project-quote::after {
  content: "“";
  position: absolute;
  right: 0.2rem;
  top: -0.3rem;
  font-size: 3rem;
  color: rgba(0,0,0,0.1);
} */


/* =========================
   CONTENT IMAGES
========================= */

.content-image {
  margin: 0;
}

.content-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.content-image figcaption {
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.4rem;
  line-height: 1.4;
}

.content-image.left {
  float: left;
  width: 50%;
  margin: 0.4rem 1.6rem 1rem 0;
}

.content-image.right {
  float: right;
  width: 50%;
  margin: 0.4rem 0 1rem 1.6rem;
}

.content-image.wide {
  clear: both;
  width: 100%;
  margin: 2.8rem 0;
}

.content-image.wide img {
  max-height: 520px;
  object-fit: cover;
}


/* =========================
   WIDE VIDEO
========================= */

.content-image.video .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 8px;
}

.content-image.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* ======================
   VIDEO CONSENT OVERLAY
====================== */

/* .video-consent-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
} */
 .video-consent-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.video-consent-overlay.active {
  display: flex;
}

.video-consent-box {
  background: #fff;
  padding: 1.6rem;
  border-radius: 16px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.video-consent-box p {
  margin-bottom: 1.4rem;
  text-indent: 0;
  line-height: 1.6;
}

.video-consent-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.video-consent-actions button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.consent-accept {
  background: #245db3;
  color: white;
}

.consent-accept:hover {
  background: #1b4a8f;
}

.consent-decline {
  background: #ddd;
}

.consent-decline:hover {
  background: #bbb;
}

.video-consent-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: -0.4rem;
  margin-bottom: 1.2rem;
}

/* ======================
   NEXT PROJECT LINK
====================== */

.next-project {
  margin: 2rem 0 3rem;
  text-align: center;
}

.next-project-link {
  display: inline-block;
  padding: 1.5rem 2.5rem 1.5rem;

  text-decoration: none;

  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(36, 93, 179, 0.08),
    rgba(227, 166, 0, 0.08)
  );

  border: 1px solid rgba(36, 93, 179, 0.15);

  transition: all 0.3s ease;
}

.next-project-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.next-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #245db3;
  margin-bottom: 0.4rem;
}

.next-project-link h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #222;
  font-weight: 600;
}

.next-project-link:hover h3 {
  color: #245db3;
}

/* NEXT PROJECT + LANGUAGE FIX */

.next-project-link.lang {
  display: none;
}

body.lang-bg .next-project-link.lang-bg,
body.lang-en .next-project-link.lang-en {
  display: inline-block;
}

/* ======================
 TECHNOLOGIES / RESULTS 
 ===================== */

.project-technologies h2,
.project-results h2 {
  color: #e2aa00;
}

.project-technologies ul {
  list-style: none;
  padding: 0;
}

.project-technologies li {
  margin-bottom: 0.5rem;
}

/* GALLERY */
.project-gallery-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;          /* бяло, както искаш */
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.project-gallery-section {
  background: #5b3a8c;
  padding: 3rem 1rem;
}

.project-gallery {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.project-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.project-gallery a:hover img {
  transform: scale(1.05);
}

/* PARTNERS */
.project-partners {
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.project-partners h2{
  font-size: 1.9rem;
}
.project-partners h3{
  font-size: 1.2rem;
}
.project-partners p{
  font-size: 0.9rem;
}

.partners-grid {
  max-width: 1000px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.partner-card img {
  max-width: 140px;
  margin-bottom: 1rem;
}

/* --------------------
    FOOTER 
-------------------- */

.site-footer {
  background: linear-gradient(
    to bottom,
    #ebd37a,
    #f2b705
  );
  color: #111;
  font-size: 0.85rem;
}

.footer-main {
  padding: 2.2rem 1.5rem 1.6rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  padding-top: 2rem;
  align-items: end;
}

.footer-col-left p {
  margin: 0 0 0.9rem;
  line-height: 1.5;
}
.footer-legal {
  font-size: 0.78rem;
  opacity: 0.85;
  text-indent: 1em;
}

.footer-col-right {
  display: flex;
  justify-content: flex-end;   /* хоризонтално вдясно */
}
.footer-col-right p {
  /* padding-left: 1.5rem; */
  margin: 0 0 0.9rem;
}
.footer-privacy {
  margin: 0;
  line-height: 1.6;
  font-size: 0.78rem;
  opacity: 0.85;
  text-indent: 1em;
  max-width: 480px;
}

.footer-bottom-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 0.75rem;
}


/* ---- Social ICONS --- */

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* color: #fff; контролира fill-а */
  /* color: #fff; */
  color: #111;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  object-fit: contain;
}

.social-icon:hover {
  transform: scale(1.15);
}

.social-icon.instagram:hover {
  transform: scale(1.35);
}

.social-icon.instagram {
  transform: scale(1.2);
}

.social-icon.youtube:hover {
  transform: scale(1.4);
}

.social-icon.youtube {
  transform: scale(1.25);
}


/* =========================
   PROJECT CONCLUSION
========================= */

.project-conclusion {
  margin: 4rem auto 3rem;
  padding: 2.5rem 3rem;
  max-width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(242, 183, 5, 0.12),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  text-align: left;
}

.project-conclusion p {
  margin: 0 0 1.6rem;
  text-indent: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  text-indent: 1.2rem;
}

.project-conclusion strong {
  color: #222;
}

.project-conclusion .final-line {
  margin-top: 1.8rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #6699cc;
  letter-spacing: 0.04em;
  text-align: center;
}


/* =========================
   TOOL ACCESS VIA MOBILE
========================= */

.tool-access {
  margin: -1rem 0 0;
  /* margin: 0 0 0.5rem; */
  text-indent: 0;
}

/* DESKTOP (QR) */
.access-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; /* плътно – 2–3px */
  text-align: center;
}

.access-desktop img {
  width: 120px;
  height: auto;
  border-radius: 6px;
}

.access-desktop span {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

/* MOBILE (LINK) */
.access-mobile {
  display: none;
  text-align: center;
}

.access-mobile a {
  display: inline-block;
  font-weight: 600;
  color: #245db3;
  text-decoration: none;
}

.access-mobile a:hover {
  text-decoration: underline;
}


/* ======================
   PROJECT TODO / ROADMAP
====================== */

.project-todo {
  list-style: none;
  padding: 0;
  margin: 2rem 0 3rem;
  max-width: 720px;
}

.project-todo li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2.2rem;
  margin-bottom: 0.4rem;

  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;

  border-left: 3px solid rgba(36, 93, 179, 0.25); /* river blue, soft */
}

/* checkbox */
.project-todo li::before {
  content: "☐";
  position: absolute;
  left: 0;
  top: 0.6rem;

  font-size: 1.1rem;
  color: #245db3; /* river blue */
}

/* completed state (for later use) */
.project-todo li.done {
  opacity: 0.6;
  text-decoration: line-through;
}

.project-todo li.done::before {
  content: "✔";
  color: #087a3c; /* nature green */
}


/* ======================
   JOURNEY LOG
====================== */

/* .log-date {
  margin: 4rem 0 2rem;
  padding: 0.6rem 0 0.6rem 1.2rem;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  color: #245db3;

  border-left: 4px solid #245db3;
  background: linear-gradient(
    to right,
    rgba(36, 93, 179, 0.08),
    rgba(255, 255, 255, 0)
  );
} */

.log-header {
  margin: 0 0 1.2rem;
}

.log-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;

  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #245db3;
}

.log-left {
  font-weight: 600;
}

.log-right {
  opacity: 0.8;
}

.log-divider {
  height: 1px;
  background: rgba(36, 93, 179, 0.3);
  margin-top: 0.6rem;
}


.journey-log-entry {
  padding: 1.6rem 1.8rem;
  margin-bottom: 3rem;

  background: linear-gradient(
    to bottom,
    rgba(102,153,204,0.08),
    rgba(255,255,255,0.95)
  );

  border-left: 2px solid #6699cc;
  /* border-left: 2px solid #f2b705; */
  border-radius: 12px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.journey-log-entry p {
  margin: 0 0 1rem;
  text-indent: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.journey-log-entry p:last-child {
  margin-bottom: 0;
}

.log-meta {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #245db3;
  /* color: #e49400; */
  margin-bottom: 1.2rem;
  font-weight: 600;
}

/* ======================
   LAYOUT HELPERS
====================== */

/* .top-bar-inner,
.nav-inner,
.summary-inner,
.projects-inner,
.journal-inner,
.impact-inner, */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 1.5rem;
}

/* ============================
    MOBILE 
============================ */

/* PROJECT INTRO */
@media (max-width: 900px) {
  .project-description {
    max-width: 80%;
    font-size: 0.9rem;
  }

  .project-description::first-letter {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px){
  .project-title {
    line-height: 1.2;
  }
  .project-subtitle {
    font-size: 1.5rem;
  }
}

/* CENTRAL PANEL */
@media (max-width: 1400px) {
  .project-panel {
    margin-top: -160px;
  }
}
@media (max-width: 900px) {
  .project-panel {
    margin-top: -130px;
  }
}
@media (max-width: 768px) {
  .project-background {
    padding-left: 0;
    padding-right: 0;
  }
  .project-panel {
    margin-top: -120px;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    padding: 1.6rem 1.2rem;
  }
}



/* PROJECT QUOTES */
@media (max-width: 768px) {
  .project-quote {
    max-width: 100%;
    margin: 2rem 0;
    padding: 1rem 1.2rem 1rem 1.5rem;
  }
}

/* CONTENT IMAGES */
@media (max-width: 768px) {
  .project-content {
    font-size: 0.95rem;
    line-height: 1.65;
  }

/* PROJECT CONTENT */
  .project-content p {
    text-indent: 0.6rem;
    margin-bottom: 1.2rem;
  }

  .project-content h2 {
    font-size: 1.6rem;
  }

  .project-content h3 {
    font-size: 1.15rem;
  }

  /* .project-content .infoblock {
    max-width: 100%;
    margin-top: 0;
  } */

  .content-image.left,
  .content-image.right {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
  }
}

/* PROJECT CONCLUSION */
@media (max-width: 768px) {
  .project-conclusion {
    padding: 2rem 1.5rem;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    text-indent: 0.6rem;
  }

  .project-conclusion .final-line {
    font-size: 1.2rem;
  }
}

/*  TOOL ACCESS SWITCH  */
@media (max-width: 768px) {
  .tool-access {
    margin: -1rem 0 0.5rem;
    text-indent: 0;
  }
  .access-desktop {
    display: none;
  }

  .access-mobile {
    display: block;
  }
}


/* FOOTER COLUMNS CONTROL*/
@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }


  .footer-col-left,
  .footer-col-right {
    width: 100%;
  }

  .footer-col-right {
    display: block;
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.25);
    padding-left: 0;
    padding-top: 1.2rem;
  }

  .footer-privacy {
    max-width: none;
    text-align: left; /* важно ако в desktop е било right */
  }
}
