/* ==========================================================================
   gmi.ge — single stylesheet, no build step.
   Tokens extracted from the original Florida-theme site (July 2026 rewrite).
   ========================================================================== */

/* ---- fonts (all self-hosted) ------------------------------------------- */

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("/assets/fonts/roboto-slab-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "nino"; /* BPG Nino Mtavruli — Georgian headings */
  src: url("/assets/fonts/bpg-nino-mtavruli-webfont.woff2") format("woff2"),
       url("/assets/fonts/bpg-nino-mtavruli-webfont.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

/* ---- tokens ------------------------------------------------------------- */

:root {
  --accent: #cc2e2e;          /* GMI red */
  --text: #626262;            /* body text (theme's base gray) */
  --heading: #333333;
  --nav-link: #000000;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --border: #ececec;
  --footer-bg: #101012;
  --footer-text: #9b9b9b;

  --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-slab: "Roboto Slab", Georgia, serif;
  --font-nino: "nino", "Roboto", sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;

  --container: 71.25rem;      /* 1140px, matches the old bootstrap container */
  --header-h: 100px;
}

/* ---- base ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-family: var(--font-slab);
  line-height: 1.25;
  margin: 0 0 var(--space-2);
}

/* Georgian pages: headings and nav render in BPG Nino Mtavruli */
html[lang="ka"] h1,
html[lang="ka"] h2,
html[lang="ka"] h3,
html[lang="ka"] h4,
html[lang="ka"] h5,
html[lang="ka"] h6 {
  font-family: var(--font-nino);
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-2);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: var(--bg);
}

.header-bar {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--header-h);
}

.logo img { display: block; }

/* right-hand block: flags on top, login button under them */
.header-side {
  position: absolute;
  right: var(--space-2);
  top: 50%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.lang-switch { display: flex; gap: 8px; }
.lang-switch a {
  display: block;
  line-height: 0;
  opacity: 0.55;
  filter: saturate(0.6);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}
.lang-switch a:hover { opacity: 1; filter: none; transform: translateY(-1px); }
.lang-switch a.current { opacity: 1; filter: none; }
.lang-switch svg { display: block; border-radius: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.login-button {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  padding: 9px 18px;
  display: block;
}
.login-button:hover { color: #fff; background: #b02020; }
.login-button span {
  display: block;
  font-size: 10px;
}
html[lang="ka"] .login-button { font-family: var(--font-nino); }

/* hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  position: absolute;
  right: var(--space-2);
  top: 24px;
  width: 40px;
  height: 36px;
  padding: 6px 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: var(--accent);
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- main nav ------------------------------------------------------------ */

.site-nav {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease;
}

.nav-in {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* compact logo, revealed with a light animation once the bar sticks */
.nav-logo {
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-8px);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  line-height: 0;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; }

.site-nav.stuck { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); }
.site-nav.stuck .nav-logo {
  width: 110px;
  opacity: 1;
  transform: translateX(0);
}
.site-nav.stuck .nav-in { justify-content: space-between; }

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 2.5vw, 2.25rem);
}

.site-nav a {
  display: block;
  padding: 18px 4px 14px;
  color: var(--nav-link);
  font-size: 15px;
  letter-spacing: 0.5px;
  border-bottom: 4px solid transparent;
}
html[lang="ka"] .site-nav a { font-family: var(--font-nino); font-size: 16px; }

.site-nav a:hover { color: var(--accent); }
.site-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---- mobile header ------------------------------------------------------- */

@media (max-width: 960px) {
  .header-bar {
    flex-direction: column;
    gap: var(--space-1);
    padding-bottom: var(--space-2);
  }

  .header-side {
    position: static;
    translate: none;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
  }

  .menu-toggle { display: block; }

  .site-nav { position: static; box-shadow: none !important; }
  .nav-in { display: block; padding: 0; }
  .nav-logo { display: none; }
  .site-nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: var(--space-1) 0;
  }
  .site-nav.open ul { display: flex; }
  .site-nav a {
    padding: 12px var(--space-2);
    border-bottom: none;
    text-align: center;
  }
  .site-nav a.active { border-bottom: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: var(--space-4);
  font-size: 14px;
}

.footer-grid {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--space-4) var(--space-2) var(--space-3);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: var(--space-3);
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

.footer-brand img { display: inline-block; border-radius: 6px; }
.footer-name {
  margin: var(--space-1) 0 var(--space-2);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-name span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--footer-text);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
@media (max-width: 767px) { .footer-social { justify-content: center; } }
.footer-social a { color: var(--footer-text); line-height: 0; }
.footer-social a:hover { color: #fff; }
.footer-login {
  font-size: 12px;
  line-height: 1.4 !important;
  border: 1px solid #333;
  border-radius: 3px;
  padding: 5px 12px;
}
.footer-login:hover { border-color: #666; }

.footer-col h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 6px 0 var(--space-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--footer-text); }
.footer-col a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
@media (max-width: 767px) { .footer-contact li { justify-content: center; } }
.footer-contact svg { flex-shrink: 0; translate: 0 2px; color: var(--accent); }

.footbot {
  background: #0a0a0b;
  padding: var(--space-2);
  text-align: center;
  font-size: 12px;
}
.footbot p { margin: 0; }

/* ==========================================================================
   Shared content patterns (used by pages in Phases 3–4)
   ========================================================================== */

/* section title with side rules — the theme's ".max-title3" look */
.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-3) 0;
  text-align: center;
}
.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  background: var(--border);
}
.section-title > * { margin: 0; font-size: 24px; }

/* ---- page hero (parallax-style banner) ---------------------------------- */

.page-hero {
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  padding: var(--space-3) var(--space-2);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  margin: 0;
  text-align: center;
}
@media (max-width: 767px) { .page-hero { min-height: 260px; } }

/* ---- prose (markdown pages) ---------------------------------------------- */

.prose { padding-block: var(--space-2) var(--space-3); }
.prose h2 { font-size: 26px; margin-top: var(--space-3); }
.prose h4 { font-size: 19px; margin-top: var(--space-3); color: var(--heading); }
.prose li { margin-bottom: 0.35em; }
.prose a { color: var(--accent); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  text-align: center;
}
@media (max-width: 767px) { .two-col { grid-template-columns: 1fr; } }

/* ---- icon boxes (offers / goals / values) -------------------------------- */

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--space-3) var(--space-2);
  margin-block: var(--space-3);
  text-align: center;
}
@media (min-width: 961px) {
  .icon-grid.offers { grid-template-columns: repeat(5, 1fr); }
}
.icon-box h4 { margin: var(--space-2) 0 var(--space-1); font-size: 18px; }
.icon-box p { margin: 0; font-size: 15px; }
.icon-circle {
  width: 110px;
  height: 110px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #555;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.icon-box:hover .icon-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ---- stats band ----------------------------------------------------------- */

.stats-band {
  background-size: cover;
  background-position: center;
  position: relative;
  margin-block: var(--space-3);
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 24, 0.55);
}
.stats-in {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--space-4) var(--space-2);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-2);
  text-align: center;
  color: #fff;
}
.stat img { display: inline-block; }
.stat-value { display: block; font-size: 52px; font-weight: 300; line-height: 1.1; }
.stat h5 { color: #fff; margin: 4px 0 0; font-size: 15px; font-weight: 400; }

/* ---- members / team ------------------------------------------------------- */

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
  margin-block: var(--space-3);
  text-align: center;
}
.member img { max-height: 130px; width: auto; margin-bottom: var(--space-2); }
.member h3 { font-size: 17px; margin-bottom: 4px; }
.member p { font-size: 14px; color: var(--color-muted, #767676); margin: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3) var(--space-2);
  margin-block: var(--space-3);
  text-align: center;
}
.person img,
.person-placeholder {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.person-placeholder {
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: #c9c9c9;
  font-size: 64px;
  font-family: var(--font-nino);
}
.person h3 { font-size: 17px; margin: var(--space-2) 0 2px; }
.person p { font-size: 14px; margin: 0; }

/* ---- video grid ------------------------------------------------------------ */

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-block: var(--space-2) var(--space-3);
}
@media (max-width: 767px) { .video-grid { grid-template-columns: 1fr; } }
.video-embed { aspect-ratio: 16 / 9; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---- contact --------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-block: var(--space-3);
}
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid p { line-height: 2; margin: 0; }
.contact-grid a:hover { color: var(--accent); }
.ci { color: var(--accent); vertical-align: -4px; display: inline-block; margin-right: 6px; }
.company-dets p { color: #073763; }

.map-wrap { margin-block: var(--space-2) var(--space-3); }
.map-wrap iframe { width: 100%; height: 330px; border: 0; display: block; }

/* ---- home hero slider ------------------------------------------------------- */

.hero-slider {
  position: relative;
  height: min(550px, 60vh);
  overflow: hidden;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: grid;
  align-items: center;
}
.hero-slider .slide.current { opacity: 1; }
.slide-caption {
  margin: 0 auto;
  max-width: min(88vw, 900px);
  text-align: center;
  color: #fff;
  font-size: clamp(17px, 2.6vw, 30px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
html[lang="ka"] .slide-caption { font-family: var(--font-nino); }
.slide-dots {
  position: absolute;
  bottom: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.slide-dots button.current { background: #fff; }
@media (max-width: 767px) { .hero-slider { height: 44vh; } }

/* ---- services page ------------------------------------------------------------ */

/* two role cards: photo, role, and beneficiary chips */
.svc2-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-block: var(--space-4);
}
@media (max-width: 767px) { .svc2-intro { grid-template-columns: 1fr; } }

.svc2-role {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.svc2-role img {
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}
.svc2-role-body { padding: var(--space-2) var(--space-3) var(--space-3); text-align: center; }
.svc2-role-body h2 { font-size: 24px; margin-bottom: 4px; }
.svc2-role-body p { margin: 0 0 var(--space-2); color: var(--heading); font-weight: 500; }

.svc2-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.svc2-chips-label { font-size: 13px; color: #999; }
.chip {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 13px;
}

/* service cards: icon + title + red checklist */
.svc2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-block: var(--space-3) var(--space-4);
}
@media (max-width: 767px) { .svc2-grid { grid-template-columns: 1fr; } }

.svc2-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: var(--space-3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc2-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}
.svc2-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.svc2-item:last-child:nth-child(odd) .svc2-list { columns: 2; column-gap: var(--space-3); }
@media (max-width: 767px) {
  .svc2-item:last-child:nth-child(odd) .svc2-list { columns: 1; }
}

.svc2-item-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.svc2-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 8%, white);
  color: var(--accent);
}
.svc2-item h3 { font-size: 18px; margin: 0; }

.svc2-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.svc2-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 0.6em;
  break-inside: avoid;
}
.svc2-list svg { flex-shrink: 0; margin-top: 4px; color: var(--accent); }

/* contact strip */
.svc2-cta {
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-block: var(--space-4);
}
.svc2-cta p { margin: 0; font-size: 19px; }
html[lang="ka"] .svc2-cta p { font-family: var(--font-nino); }
.svc2-cta .button {
  background: #fff;
  color: var(--accent);
  padding: 12px 26px;
  border-radius: 3px;
  font-weight: 600;
}
.svc2-cta .button:hover { background: #f4f4f4; color: var(--accent); }

/* ---- sub-publishing partners ---------------------------------------------------- */

.partners { text-align: center; }
.partners > p { font-size: 17px; }
.partner {
  margin-block: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.partner:first-of-type { border-top: 0; padding-top: 0; }
.partner h2 { margin-bottom: var(--space-1); }
.partner p { max-width: 60rem; margin-inline: auto; }
.partner-logo { max-height: 60px; width: auto; margin-bottom: var(--space-2); }

/* ---- catalogue grid + artist pages ------------------------------------------ */

.cat-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: var(--space-3) 0;
}
.cat-filters a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 14px;
  color: var(--text);
}
.cat-filters a:hover { color: var(--accent); border-color: var(--accent); }
.cat-filters a.selected { color: var(--accent); border-color: var(--accent); }

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: var(--space-4);
}
@media (max-width: 960px) { .artist-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .artist-grid { grid-template-columns: repeat(2, 1fr); } }

.artist-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
  display: block;
}
.artist-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%);
  transition: filter 0.3s, transform 0.3s;
}
.artist-tile:hover img { filter: none; transform: scale(1.03); }
.tile-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 56px;
  color: #d5d5d5;
  font-family: var(--font-nino);
}
.tile-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 10px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.artist-tile:hover .tile-name,
.artist-tile:focus-visible .tile-name { opacity: 1; }
/* photo-less tiles always show the name */
.tile-placeholder + .tile-name { opacity: 1; }

.artist-page { padding-top: var(--space-3); }
.artist-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: var(--space-3);
  align-items: start;
  margin-bottom: var(--space-3);
}
@media (max-width: 600px) { .artist-card { grid-template-columns: 1fr; } }
.artist-photo { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }
.artist-meta h1 { font-size: 30px; margin-bottom: var(--space-1); }
.artist-cats { color: var(--accent); font-size: 15px; margin-top: 0; }
.back-link { font-size: 14px; color: var(--text); }
.artist-grid.related { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 600px) { .artist-grid.related { grid-template-columns: repeat(2, 1fr); } }

/* ---- 404 ---------------------------------------------------------------------- */

.notfound { text-align: center; padding-block: var(--space-4); }
.nf-code { font-size: 90px; color: var(--accent); margin: 0; font-weight: 300; line-height: 1; }
.nf-rule { border: 0; border-top: 1px solid var(--border); margin: var(--space-3) auto; max-width: 300px; }
.notfound a { color: var(--accent); }

/* ---- advantages band (EN home) ---------------------------------------------- */

.adv-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block: var(--space-3);
}
.adv-tile {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  position: relative;
}
.adv-tile::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.25); }
.adv-tile p {
  position: relative;
  color: #fff;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 20px);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
@media (max-width: 767px) { .adv-band { grid-template-columns: 1fr 1fr; } }
