/* ============================================================
   KryoFridge Utah — handwritten CSS, no framework
   Class prefix: ut-   (Utah)
   Per-city duplications should swap this prefix.
   ============================================================ */

:root {
  --ut-primary: #0a4d8c;
  --ut-primary-dk: #073a6b;
  --ut-accent: #4CC2F1;
  --ut-accent-dk: #2BA8DA;
  --ut-dark: #0d1b2a;
  --ut-mid: #1f3a5f;
  --ut-text: #1a2433;
  --ut-muted: #5b6877;
  --ut-light: #f4f7fb;
  --ut-line: #d4e2ef;
  --ut-bg: #ffffff;
  --ut-success: #16794f;
  --ut-danger: #b3261e;

  --ut-radius: 10px;
  --ut-radius-lg: 16px;
  --ut-shadow-sm: 0 1px 3px rgba(13, 27, 42, 0.08);
  --ut-shadow: 0 6px 18px rgba(13, 27, 42, 0.10);
  --ut-shadow-lg: 0 24px 60px rgba(13, 27, 42, 0.18);

  --ut-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ut-font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ut-container: 1200px;
  --ut-gutter: clamp(16px, 4vw, 32px);
}

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

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

body {
  margin: 0;
  font-family: var(--ut-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ut-text);
  background: var(--ut-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ut-primary); text-decoration: none; }
a:hover { color: var(--ut-primary-dk); text-decoration: underline; }
h1, h2, h3, h4, h5 { font-family: var(--ut-font-heading); line-height: 1.2; margin: 0 0 .6em; color: var(--ut-dark); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
li { margin-bottom: .35em; }
strong { font-weight: 700; color: var(--ut-dark); }

.ut-container {
  max-width: var(--ut-container);
  margin: 0 auto;
  padding: 0 var(--ut-gutter);
}

.ut-section { padding: clamp(48px, 8vw, 96px) 0; }
.ut-section--alt { background: var(--ut-light); }
.ut-section--dark { background: var(--ut-dark); color: #e6edf6; }
.ut-section--dark h2, .ut-section--dark h3 { color: #fff; }
.ut-section--dark a { color: var(--ut-accent); }

.ut-eyebrow {
  display: inline-block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ut-primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.ut-section--dark .ut-eyebrow { color: var(--ut-accent); }

.ut-lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ut-muted); max-width: 65ch; }

/* ============================================================
   Buttons & CTAs
   ============================================================ */
.ut-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--ut-radius); font-weight: 700;
  font-size: 1rem; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: all .2s ease;
  line-height: 1; white-space: nowrap;
}
.ut-btn:hover { text-decoration: none; transform: translateY(-1px); }
.ut-btn--primary { background: var(--ut-primary); color: #fff; }
.ut-btn--primary:hover { background: var(--ut-primary-dk); color: #fff; }
.ut-btn--accent { background: var(--ut-accent); color: var(--ut-dark); }
.ut-btn--accent:hover { background: var(--ut-accent-dk); color: var(--ut-dark); }
/* keep "Get Quote" readable on the new baby-blue background */
.ut-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.ut-btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.ut-btn--lg { padding: 18px 32px; font-size: 1.1rem; }
.ut-btn--block { width: 100%; }

/* ============================================================
   Header / Top Nav
   ============================================================ */
.ut-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--ut-line);
}
.ut-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--ut-gutter); gap: 24px;
  max-width: var(--ut-container); margin: 0 auto;
}
.ut-nav__brand { display: flex; align-items: center; gap: 12px; }
.ut-nav__brand img { height: 44px; width: auto !important; max-height: 44px; display: block; }
.ut-nav__brand-text { font-weight: 800; font-size: 1.15rem; color: var(--ut-dark); }
.ut-nav__brand-text small { display: block; font-size: .7rem; color: var(--ut-muted); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.ut-nav__links { display: none; gap: 22px; list-style: none; padding: 0; margin: 0; }
.ut-nav__links a { color: var(--ut-text); font-weight: 600; font-size: .95rem; }
.ut-nav__links a:hover { color: var(--ut-primary); text-decoration: none; }
.ut-nav__cta { display: flex; align-items: center; gap: 12px; }
.ut-nav__phone {
  font-weight: 800; color: var(--ut-primary); font-size: 1.05rem;
  white-space: nowrap;
  display: none; /* hidden on mobile (sticky call bar covers it); shown ≥980px below */
}
.ut-nav__brand img { display: block; }
.ut-nav__toggle {
  display: inline-flex; background: none; border: 0; cursor: pointer; padding: 8px;
}
.ut-nav__toggle svg { width: 26px; height: 26px; stroke: var(--ut-dark); }

@media (min-width: 980px) {
  .ut-nav__links { display: flex; }
  .ut-nav__toggle { display: none; }
  .ut-nav__phone { display: inline-block; }
}

/* Mobile drawer */
.ut-nav__drawer {
  display: none; position: fixed; inset: 64px 0 0 0; background: #fff;
  padding: 24px var(--ut-gutter); border-top: 1px solid var(--ut-line);
  z-index: 49; overflow-y: auto;
}
.ut-nav__drawer.is-open { display: block; }
.ut-nav__drawer ul { list-style: none; padding: 0; margin: 0 0 20px; }
.ut-nav__drawer li { padding: 14px 0; border-bottom: 1px solid var(--ut-line); }
.ut-nav__drawer a { font-size: 1.1rem; color: var(--ut-dark); font-weight: 600; }

/* ============================================================
   Hero
   ============================================================ */
.ut-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(13,27,42,.92), rgba(10,77,140,.85)),
    url("../images/optimized/kryofridge-utah-mobile-refrigeration-fleet.webp") center/cover no-repeat;
  color: #fff;
  padding: clamp(16px, 2.5vw, 32px) 0 clamp(48px, 7vw, 80px);
}
.ut-hero h1 { color: #fff; margin: 0 0 .25em; font-size: clamp(1.75rem, 4.4vw, 3rem); }
.ut-hero .ut-eyebrow { color: var(--ut-accent); margin-bottom: 6px; }
.ut-hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start;
}
.ut-hero__copy p { font-size: clamp(1rem, 1.5vw, 1.15rem); color: #d6e1ee; max-width: 56ch; margin: 0 0 .5em; }
.ut-hero__trailer {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 8px 0 10px;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.35));
}
@media (min-width: 920px) { .ut-hero__trailer { max-width: 580px; margin: 10px 0 4px; } }
.ut-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.ut-hero__trust {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: .88rem; color: #c9d5e6;
}
.ut-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.ut-hero__trust strong { color: #fff; }

@media (min-width: 920px) {
  .ut-hero__grid { grid-template-columns: 1.1fr .9fr; gap: 56px; }
}

/* ============================================================
   Quote form
   ============================================================ */
.ut-form-card {
  background: #fff; color: var(--ut-text);
  border-radius: var(--ut-radius-lg);
  box-shadow: var(--ut-shadow-lg);
  padding: 28px;
}
.ut-form-card h2 { font-size: 1.5rem; margin-bottom: 4px; }
.ut-form-card__sub { color: var(--ut-muted); margin-bottom: 18px; font-size: .95rem; }

.ut-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ut-form__field { display: flex; flex-direction: column; }
.ut-form__field--full { grid-column: 1 / -1; }
.ut-form label { font-size: .82rem; font-weight: 600; color: var(--ut-dark); margin-bottom: 6px; }
.ut-form label .req { color: var(--ut-danger); }
.ut-form input, .ut-form select, .ut-form textarea {
  font: inherit; color: var(--ut-text);
  padding: 11px 12px; border: 1px solid var(--ut-line); border-radius: 8px;
  background: #fff; transition: border .15s ease, box-shadow .15s ease;
  width: 100%;
}
.ut-form input:focus, .ut-form select:focus, .ut-form textarea:focus {
  outline: none; border-color: var(--ut-primary);
  box-shadow: 0 0 0 3px rgba(10,77,140,.18);
}
.ut-form textarea { min-height: 90px; resize: vertical; }
.ut-form__honeypot { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }
.ut-form__submit { margin-top: 6px; }
.ut-form__status { margin-top: 10px; font-size: .92rem; min-height: 1.2em; }
.ut-form__status.is-error { color: var(--ut-danger); }
.ut-form__status.is-success { color: var(--ut-success); font-weight: 600; }
.ut-form__legal { font-size: .78rem; color: var(--ut-muted); margin-top: 10px; }

/* ============================================================
   Trust strip
   ============================================================ */
.ut-trust {
  background: var(--ut-dark); color: #d6e1ee;
  padding: 24px var(--ut-gutter);
}
.ut-trust__inner {
  max-width: var(--ut-container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  text-align: center; font-size: .92rem;
}
.ut-trust__inner strong { color: var(--ut-accent); display: block; font-size: 1.05rem; margin-bottom: 2px; }
@media (min-width: 720px) { .ut-trust__inner { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Why #1
   ============================================================ */
.ut-reasons { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 36px; }
.ut-reasons__item {
  background: #fff; padding: 24px; border-radius: var(--ut-radius);
  border: 1px solid var(--ut-line); box-shadow: var(--ut-shadow-sm);
}
.ut-reasons__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ut-primary); color: #fff; font-weight: 800;
  flex-shrink: 0;
}
.ut-reasons__summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  position: relative; padding-right: 38px;
}
.ut-reasons__summary::-webkit-details-marker { display: none; }
.ut-reasons__item h3 { margin: 0; flex: 1; }
.ut-reasons__body { margin-top: 16px; }
.ut-reasons__body p:last-of-type { margin-bottom: 0; }
.ut-reasons__more {
  display: none; margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--ut-line);
}
.ut-reasons__more.is-expanded { display: block; }
@media (min-width: 760px) { .ut-reasons { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .ut-reasons { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ============================================================
   Fleet cards
   ============================================================ */
.ut-fleet { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 32px; }
.ut-fleet__card {
  background: #fff; border: 1px solid var(--ut-line); border-radius: var(--ut-radius);
  overflow: hidden; box-shadow: var(--ut-shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ut-fleet__card:hover { transform: translateY(-4px); box-shadow: var(--ut-shadow); }
.ut-fleet__img { aspect-ratio: 4/3; background: var(--ut-light); padding: 18px; display: flex; align-items: center; justify-content: center; }
.ut-fleet__img img { max-height: 100%; object-fit: contain; }
.ut-fleet__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.ut-fleet__title { font-size: 1.25rem; margin: 0 0 6px; }
.ut-fleet__price { color: var(--ut-primary); font-weight: 700; margin-bottom: 12px; font-size: .95rem; }
.ut-fleet__specs { list-style: none; padding: 0; margin: 0 0 18px; font-size: .92rem; color: var(--ut-muted); }
.ut-fleet__specs li { padding: 4px 0; border-bottom: 1px dashed var(--ut-line); }
.ut-fleet__specs li:last-child { border: 0; }
.ut-fleet__cta { margin-top: auto; }
@media (min-width: 720px) { .ut-fleet { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ut-fleet { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Service area + map
   ============================================================ */
.ut-area { display: grid; gap: 32px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 920px) { .ut-area { grid-template-columns: 1.15fr 1fr; align-items: start; } }
.ut-map {
  border-radius: var(--ut-radius); overflow: hidden;
  border: 1px solid var(--ut-line); box-shadow: var(--ut-shadow);
  aspect-ratio: 16/12;
}
.ut-map iframe { width: 100%; height: 100%; border: 0; }
.ut-cities { columns: 2; column-gap: 24px; padding: 0; list-style: none; margin: 0; }
.ut-cities li { padding: 6px 0; color: var(--ut-text); break-inside: avoid; font-size: .95rem; }
.ut-cities li::before { content: "▸"; color: var(--ut-primary); margin-right: 8px; }
@media (min-width: 540px) { .ut-cities { columns: 3; } }

/* ============================================================
   Use cases grid
   ============================================================ */
.ut-uses { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 32px; }
.ut-uses__item {
  background: #fff; padding: 22px; border-radius: var(--ut-radius);
  border: 1px solid var(--ut-line);
}
.ut-uses__summary {
  list-style: none; cursor: pointer; position: relative; padding-right: 34px;
}
.ut-uses__summary::-webkit-details-marker { display: none; }
.ut-uses__item h3 { font-size: 1.1rem; margin: 0; }
.ut-uses__body { margin-top: 10px; }
.ut-uses__body p { font-size: .94rem; color: var(--ut-muted); margin: 0 0 .6em; }
.ut-uses__body p:last-of-type { margin-bottom: 0; }
.ut-uses__more {
  display: none; margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--ut-line);
}
.ut-uses__more.is-expanded { display: block; }
@media (min-width: 640px) { .ut-uses { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .ut-uses { grid-template-columns: repeat(3, 1fr); } }

/* Read-more button (text-link style) — used by reasons + use cases */
.ut-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 12px 0 0;
  color: var(--ut-primary); font-weight: 700; font-size: .92rem;
  cursor: pointer; font-family: inherit;
}
.ut-readmore:hover { text-decoration: underline; color: var(--ut-primary-dk); }
.ut-readmore__icon {
  display: inline-block; transition: transform .2s ease;
  font-size: 1.1rem; line-height: 1; transform: rotate(0deg);
}
.ut-readmore[aria-expanded="true"] .ut-readmore__icon { transform: rotate(45deg); }

/* MOBILE — native accordion: + icon on summary, no read-more button */
@media (max-width: 759px) {
  .ut-reasons__summary::after, .ut-uses__summary::after {
    content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    font-size: 1.7rem; color: var(--ut-primary); font-weight: 300; line-height: 1;
    transition: transform .2s ease;
  }
  .ut-reasons__item[open] .ut-reasons__summary::after,
  .ut-uses__item[open] .ut-uses__summary::after {
    transform: translateY(-50%) rotate(45deg);
  }
  /* On mobile, when the <details> opens, show the extended content too */
  .ut-reasons__item[open] .ut-reasons__more,
  .ut-uses__item[open] .ut-uses__more { display: block; }
  /* Hide read-more button on mobile (whole accordion expands on tap) */
  .ut-readmore { display: none; }
}

/* DESKTOP — body always visible; summary not clickable */
@media (min-width: 760px) {
  .ut-reasons__summary, .ut-uses__summary { cursor: default; }
}

/* ============================================================
   Articles
   ============================================================ */
.ut-articles { display: grid; gap: 32px; margin-top: 32px; }
.ut-article {
  background: #fff; padding: 32px; border-radius: var(--ut-radius);
  border: 1px solid var(--ut-line);
}
.ut-article h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.ut-article h3 { font-size: 1.15rem; margin-top: 1.5em; }
.ut-article p, .ut-article li { font-size: 1rem; }

/* ============================================================
   Process / steps
   ============================================================ */
.ut-process { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 32px; counter-reset: step; }
.ut-process__step {
  background: #fff; padding: 24px; border-radius: var(--ut-radius);
  border: 1px solid var(--ut-line); position: relative; padding-top: 36px;
}
.ut-process__step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; left: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ut-accent); color: var(--ut-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
@media (min-width: 720px) { .ut-process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ut-process { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   FAQ
   ============================================================ */
.ut-faq { margin-top: 32px; }
.ut-faq__item {
  background: #fff; border: 1px solid var(--ut-line); border-radius: var(--ut-radius);
  margin-bottom: 12px; overflow: hidden;
}
.ut-faq__q {
  cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 1.02rem;
  color: var(--ut-dark); display: flex; justify-content: space-between; align-items: center;
  gap: 16px; list-style: none;
}
.ut-faq__q::-webkit-details-marker { display: none; }
.ut-faq__q::after { content: "+"; font-size: 1.4rem; color: var(--ut-primary); transition: transform .2s; }
.ut-faq__item[open] .ut-faq__q::after { content: "−"; }
.ut-faq__a { padding: 0 22px 20px; color: var(--ut-text); }

/* ============================================================
   Final CTA
   ============================================================ */
.ut-final {
  background: linear-gradient(135deg, var(--ut-primary), var(--ut-mid));
  color: #fff; text-align: center; padding: clamp(56px, 8vw, 96px) var(--ut-gutter);
}
.ut-final h2 { color: #fff; }
.ut-final p { color: #d6e1ee; max-width: 56ch; margin: 0 auto 24px; }
.ut-final__phone {
  display: inline-block; margin: 12px 0;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}
.ut-final__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.ut-footer { background: var(--ut-dark); color: #a8b8cc; padding: 56px var(--ut-gutter) 32px; }
.ut-footer__grid {
  max-width: var(--ut-container); margin: 0 auto;
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
.ut-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.ut-footer a { color: #c9d5e6; }
.ut-footer__brand img { height: 50px; margin-bottom: 14px; }
.ut-footer__brand p { font-size: .9rem; }
.ut-footer__list { list-style: none; padding: 0; margin: 0; }
.ut-footer__list li { padding: 4px 0; font-size: .9rem; }
.ut-footer__bottom {
  max-width: var(--ut-container); margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .82rem; color: #7a8aa0;
}
@media (min-width: 720px) {
  .ut-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ============================================================
   Click-to-call sticky (mobile only)
   ============================================================ */
.ut-stickycall {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ut-dark); border-top: 1px solid rgba(255,255,255,.1);
}
.ut-stickycall a {
  padding: 14px 8px; text-align: center; color: #fff; font-weight: 700;
  text-decoration: none; font-size: .95rem;
}
.ut-stickycall a:hover { text-decoration: none; color: #fff; }
.ut-stickycall a:first-child { background: var(--ut-primary); }
.ut-stickycall a:last-child { background: var(--ut-accent); color: var(--ut-dark); }
@media (min-width: 720px) { .ut-stickycall { display: none; } }
body { padding-bottom: 60px; } /* breathing room for sticky */
@media (min-width: 720px) { body { padding-bottom: 0; } }

/* ============================================================
   Photo gallery
   ============================================================ */
.ut-gallery {
  display: grid; gap: 14px; margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
}
.ut-gallery__item {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--ut-radius); border: 1px solid var(--ut-line);
  background: var(--ut-light);
  aspect-ratio: 4 / 3;
}
.ut-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.ut-gallery__item:hover img { transform: scale(1.05); }
.ut-gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 14px 10px;
  background: linear-gradient(0deg, rgba(13,27,42,.85), rgba(13,27,42,0));
  color: #fff; font-size: .82rem; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.ut-gallery__item:hover figcaption,
.ut-gallery__item:focus-within figcaption {
  opacity: 1; transform: translateY(0);
}
@media (min-width: 640px) { .ut-gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 960px) { .ut-gallery { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1240px) { .ut-gallery { grid-template-columns: repeat(5, 1fr); } }

/* ============================================================
   Visually-hidden (screen reader)
   ============================================================ */
.ut-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
