/* ===============================
   HERO SECTION
================================*/
.job-hero {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
}

.job-hero h1 {
  font-size: 2rem;
  color: #291d51;
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/futures.jpg") center/cover no-repeat;
  animation: zoomBg 25s ease-in-out infinite alternate;
  z-index: -2;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

/* DARK OVERLAY */
.job-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,27,70,.75), rgba(0,0,0,.35));
  z-index: -1;
}

/* ===============================
   GLASS CARD
================================*/
.hero-glass {
  width: min(92%, 1000px);
  padding: clamp(20px, 5vw, 50px) clamp(16px, 4vw, 50px);
  border-radius: 24px;
  backdrop-filter: blur(28px);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  animation: fadeUp .9s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
   TEXT
================================*/
.page-title {
  letter-spacing: 4px;
  font-size: .85rem;
  color: red;
  font-weight: 900;
}

.main-heading {
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0 35px;
  font-size: clamp(22px, 5vw, 52px);
}

.gradient-text {
  background: linear-gradient(90deg, #ff003c, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   SEARCH BAR
================================*/
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  /* NO overflow:hidden — dropdown must escape the wrapper */
  transition: border-color .3s, box-shadow .3s;
}

.search-wrapper:focus-within {
  border-color: rgba(255,0,60,.7);
  box-shadow: 0 0 20px rgba(255,0,60,.25);
}

.search-wrapper i {
  padding: 0 14px;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  font-size: 15px;
}

.search-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 15px;
  padding: 16px 0;
  min-width: 0;
}

.search-wrapper input::placeholder { color: rgba(255,255,255,.5); }

/* thin divider between input and button */
.search-wrapper::before {
  content: "";
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* BUTTON */
.search-wrapper button {
  border: none;
  padding: 16px 28px;
  border-radius: 0 12px 12px 0;
  font-weight: 700;
  cursor: pointer;
  background: #ff003c;
  color: #fff;
  transition: background .25s;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 15px;
  letter-spacing: .3px;
}

.search-wrapper button:hover { background: #cc0030; }

/* ===============================
   SUGGESTIONS
================================*/
.suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #0a1628;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  display: none;
  z-index: 99999;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

.suggestions div {
  padding: 12px 16px;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .15s;
}

.suggestions div:last-child { border-bottom: none; }

.suggestions div::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
}

.suggestions div:hover,
.suggestions div.active {
  background: rgba(255,0,60,.18);
  color: #fff;
}

.suggestions div:hover::before,
.suggestions div.active::before {
  color: #ff4d6d;
}

/* highlighted match text injected by JS */
.suggestions div mark {
  background: transparent;
  color: #ff4d6d;
  font-weight: 700;
}

/* ===============================
   TYPING + COUNTER
================================*/
.typing-text {
  margin-top: 18px;
  color: #ff4d6d;
  font-size: clamp(13px, 2vw, 18px);
  min-height: 24px;
  font-family: cursive;
}

.jobs-count {
  margin-top: 15px;
  font-size: clamp(15px, 2.5vw, 18px);
}

/* ===============================
   SCROLL INDICATOR
================================*/
.scroll-indicator {
  position: absolute;
  bottom: 25px;
}

.scroll-indicator span {
  width: 26px;
  height: 42px;
  border: 4px solid #5e5a9d;
  border-radius: 20px;
  display: block;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  width: 5px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%   { top: 8px;  opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ===============================
   MOBILE SEARCH (≤ 500px)
================================*/
@media (max-width: 500px) {
  .search-wrapper {
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    gap: 0;
    overflow: visible; /* FIXED: was overflow:hidden which clipped the suggestions dropdown */
    padding: 0;
    position: relative;
  }

  /* clip only the wrapper background/border visually using a pseudo element trick */
  .search-wrapper > i,
  .search-wrapper > input,
  .search-wrapper > button {
    overflow: hidden;
  }

  /* input row rounding on mobile */
  .search-wrapper input {
    border-radius: 14px 14px 0 0;
  }
  .search-wrapper button {
    border-radius: 0 0 14px 14px;
  }

  /* hide the divider pseudo-element on mobile */
  .search-wrapper::before { display: none; }

  .search-wrapper i {
    display: none;
  }

  .search-wrapper input {
    padding: 15px 16px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    text-align: left;
  }

  .search-wrapper button {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    letter-spacing: .5px;
  }

  /* Suggestions full width on mobile */
  .suggestions {
    left: 0;
    right: 0;
    width: 100%;
    top: calc(100% + 6px);
    border-radius: 10px;
  }
}

/* ═══════════════════════════════
   JOBS SECTION
═══════════════════════════════*/
.jobs-section {
  padding: clamp(30px, 6vw, 80px) clamp(12px, 4vw, 20px);
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  color: #fff;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  margin-bottom: clamp(24px, 5vw, 60px);
}

/* ── GRID ─────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 30px);
  align-items: start;
}

@media (max-width: 1200px) {
  .jobs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .jobs-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ── CARD (base) ──────────────────────── */
.job-card {
  display: flex;
  flex-direction: row;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  padding: clamp(16px, 2.2vw, 28px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  /* height is intentionally NOT set — card auto-sizes to content */
  transition: transform .4s ease, box-shadow .4s ease;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,0,60,.35), transparent);
  opacity: 0;
  transition: .5s;
  pointer-events: none;
  z-index: 0;
}

.job-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, transparent, #ff003c, transparent);
  opacity: .15;
  filter: blur(20px);
  z-index: -1;
}

.job-card:hover::before { opacity: 1; }

.job-card:hover:not(.expanded) {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
}

/* ── CARD CONTENT ─────────────────────── */
.job-content {
  flex: 1;
  min-width: 0;
  color: #fff;
  text-align: left;
  position: relative;
  z-index: 1;
  transition: opacity .25s ease;
}

.job-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.job-title {
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  word-break: break-word;
  flex: 1;
  min-width: 0;
  line-height: 1.3;
  margin: 0;
}

.positions {
  display: inline-block;
  background: rgba(255,0,0,.2);
  color: #ff4d4d;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: clamp(.68rem, .85vw, .8rem);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  line-height: 1.5;
}

.job-info p {
  margin: 5px 0;
  opacity: .85;
  font-size: clamp(.75rem, 1.2vw, .88rem);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-info p i {
  color: #ff4d4d;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.apply-btn {
  margin-top: 12px;
  padding: clamp(8px, 1.1vw, 11px) clamp(14px, 1.8vw, 24px);
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg, #ff003c, #ff4d4d);
  color: white;
  cursor: pointer;
  font-size: clamp(.8rem, 1.2vw, .95rem);
  font-weight: 600;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  z-index: 2;
}

.apply-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,0,0,.7);
}

/* ── CARD IMAGE (thumbnail — normal state) ── */
.job-image {
  flex: 0 0 auto;
  width: clamp(110px, 26%, 200px);
  /* portrait flyer ratio — tall enough to show the whole image */
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: zoom-in;
  transition:
    width .45s cubic-bezier(.4,0,.2,1),
    aspect-ratio .45s cubic-bezier(.4,0,.2,1),
    border-radius .45s ease,
    flex .45s cubic-bezier(.4,0,.2,1);
  z-index: 1;
  background: #0f172a;
}

.job-image img {
  width: 100%;
  height: 100%;
  /* contain shows the WHOLE flyer — nothing is cropped */
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform .5s ease;
}

/* ── IMAGE EXPANDED STATE ── */
/* Card switches to column, image fills full width at portrait ratio */
.job-card.img-expanded {
  flex-direction: column;
  align-items: stretch;
}

.job-card.img-expanded .job-image {
  width: 100%;
  /* keep portrait ratio so full flyer is always visible */
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  cursor: zoom-out;
  flex: none;
}

.job-card.img-expanded .job-image img {
  object-fit: contain;
  transform: none;
}

.job-card.img-expanded .job-content {
  width: 100%;
  text-align: left;
}

/* keep the expand-hint cursor on the image thumbnail */
.job-image:not(.img-expanded .job-image) {
  cursor: zoom-in;
}

/* ── expand icon hint badge ── */
.job-image::after {
  content: "\f00e";   /* fa-search-plus */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 7px;
  right: 7px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 11px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  line-height: 24px;
  text-align: center;
}

.job-card:hover .job-image::after {
  opacity: 1;
}

.job-card.img-expanded .job-image::after {
  content: "\f010";   /* fa-search-minus */
  opacity: 1;
}

.job-card:hover:not(.expanded) .job-image img {
  transform: scale(1.07);
}

/* ── TABLET STACK (≤ 768px) ─────────── */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    text-align: center;
    padding: clamp(14px, 3.5vw, 22px);
    gap: 12px;
  }

  .job-content { text-align: center; width: 100%; }

  .job-header {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .job-info p { justify-content: center; }

  /* On mobile — show only the TOP HALF of the flyer by default */
  .job-image {
    width: 100%;
    aspect-ratio: unset;          /* remove fixed ratio; height drives it now */
    height: 44vw;                 /* ~half the portrait flyer height */
    max-height: 200px;            /* cap on wider phones */
    border-radius: 10px;
    overflow: hidden;
    transition:
      height .5s cubic-bezier(.4,0,.2,1),
      max-height .5s cubic-bezier(.4,0,.2,1),
      border-radius .4s ease;
  }

  /* Image fills the container; top-aligned so the top half is visible */
  .job-image img {
    width: 100%;
    height: auto;                 /* natural height — full flyer */
    object-fit: unset;
    object-position: unset;
    display: block;
    transition: none;             /* no scale on mobile */
  }

  /* Tap-to-reveal: expand container so full flyer is visible */
  .job-card.img-expanded .job-image {
    height: auto;
    max-height: 800px;            /* large enough for any portrait flyer */
    aspect-ratio: unset;
    cursor: zoom-out;
  }

  /* "tap to see more" arrow badge — always visible on mobile */
  .job-image::after {
    opacity: 1;
    bottom: 6px;
    right: 50%;
    transform: translateX(50%);
    width: 28px;
    height: 28px;
    content: "\f078";             /* fa-chevron-down */
    font-size: 12px;
    background: rgba(0,0,0,.6);
  }

  /* Flip arrow when expanded */
  .job-card.img-expanded .job-image::after {
    content: "\f077";             /* fa-chevron-up */
    opacity: 1;
  }

  .apply-btn { width: 100%; text-align: center; }
}


/* ── SMALL PHONE (≤ 420px) ──────────── */
@media (max-width: 420px) {
  .job-card { padding: 14px; border-radius: 14px; gap: 10px; }
  .job-title { font-size: .92rem; }
  .positions { font-size: .68rem; padding: 3px 8px; }
}

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════*/
.reveal {
  opacity: 0;
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.65,.3,1);
}

.reveal-up   { transform: translateY(60px); }
.reveal-fade { transform: translateY(20px); }
.reveal-scale{ transform: scale(.9); }

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.reveal:nth-child(1) { transition-delay: .1s; }
.reveal:nth-child(2) { transition-delay: .25s; }
.reveal:nth-child(3) { transition-delay: .4s; }
.reveal:nth-child(4) { transition-delay: .55s; }
.reveal:nth-child(5) { transition-delay: .7s; }

/* ═══════════════════════════════
   LIGHTBOX OVERLAY
   – clicking job image opens a
     full-screen lightbox so the
     flyer is always shown at its
     natural size / aspect ratio
═══════════════════════════════*/

/* Overlay backdrop */
.img-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: lbFadeIn .25s ease;
}

.img-lightbox.active {
  display: flex;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* The image itself */
.img-lightbox img {
  max-width:  min(96vw, 900px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
  animation: lbSlideUp .3s ease;
  display: block;
}

@keyframes lbSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Close button */
.img-lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 100000;
  backdrop-filter: blur(4px);
}

.img-lightbox-close:hover {
  background: rgba(255, 0, 60, .5);
  transform: scale(1.1);
}

/* img-expanded handled above in the card image section */


/* ═══════════════════════════════
   PAGINATION
═══════════════════════════════*/
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(24px, 5vw, 50px);
}

.page-btn {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-size: .88rem;
  transition: .25s;
  min-width: 42px;
  text-align: center;
}

.page-btn:hover:not(.disabled) {
  background: rgba(255,0,60,.25);
  border-color: rgba(255,0,60,.5);
  transform: translateY(-2px);
}

.page-btn.active {
  background: linear-gradient(90deg, #ff003c, #b3002d);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255,0,60,.4);
}

.page-btn.disabled {
  opacity: .35;
  cursor: not-allowed;
}

@media (max-width: 400px) {
  .page-btn { padding: 8px 12px; font-size: .8rem; min-width: 36px; }
}

/* ═══════════════════════════════
   APPLICATION MODAL
═══════════════════════════════*/
.apply-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 12px;       /* prevents modal touching edges on small phones */
}

.apply-modal.active { display: flex; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;          /* never taller than the viewport */
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #031b46;
  border-radius: 18px;
  overflow: hidden;
  animation: slideUp .5s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: .2s;
}
.modal-close:hover { background: rgba(255,0,60,.4); }

.progress-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #222;
  z-index: 5;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff003c, #b3002d);
  transition: width .4s ease;
}

.modal-left {
  background: #021633;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 30px;
}

.modal-left h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 8px; }
.modal-left p  { opacity: .7; font-size: clamp(.85rem, 1.5vw, 1rem); }

.modal-right {
  padding: clamp(24px, 4vw, 50px) clamp(20px, 4vw, 40px);
  background: #021633;
  color: #fff;
  overflow-y: auto;
  max-height: 92vh;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 13px;
  opacity: .75;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  background: #031b46;
  color: #fff;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #ff003c;
}

.drop-zone {
  border: 2px dashed #ff003c;
  padding: clamp(18px, 3vw, 30px);
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
}

.drop-zone.dragover { background: rgba(255,0,60,.1); }

.drop-zone i {
  font-size: clamp(26px, 5vw, 34px);
  margin-bottom: 8px;
  display: block;
  color: #ff4d4d;
}

.drop-zone p { font-size: clamp(.78rem, 1.3vw, .9rem); opacity: .8; }

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #ff003c, #b3002d);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  font-size: clamp(.9rem, 1.5vw, 1rem);
  transition: .2s;
}

.submit-btn:hover { opacity: .88; transform: translateY(-1px); }

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Modal: tablet (≤ 768px) ─────────── */
@media (max-width: 768px) {
  .modal-box {
    grid-template-columns: 1fr;
    max-height: 88vh;
  }

  .modal-left { display: none; }

  .modal-right { max-height: 88vh; }
}

/* ── Modal: small phone (≤ 420px) ─────  */
@media (max-width: 420px) {
  .modal-box { border-radius: 14px; }

  .modal-right {
    padding: 20px 16px;
  }
}

/* ═══════════════════════════════
   DESCRIPTION COLLAPSE TOGGLE
═══════════════════════════════*/
.job-desc-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: clamp(.78rem, 1.3vw, .88rem);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.job-desc-more { margin-top: 4px; }

.desc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  background: none;
  border: none;
  color: #ff4d6d;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s;
}

.desc-toggle:hover { opacity: .75; }
.desc-toggle i { font-size: .7rem; }

/* ── Keep cards aligned in the grid ── */
.jobs-grid {
  align-items: stretch; /* override align-items:start so cards don't mismatch heights */
}

.job-card {
  align-items: flex-start; /* image + content align to top */
}

/* ═══════════════════════════════
   NO RESULTS
═══════════════════════════════*/
.no-results {
  color: #fff;
  text-align: center;
  grid-column: 1 / -1;
  padding: 40px 20px;
  opacity: .75;
  font-size: clamp(.9rem, 2vw, 1.1rem);
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════*/
footer { margin-top: 0 !important; }