    :root {
      --DepotCards-bg: var(--color-light);
      --DepotCards-card: rgba(255,255,255,0.06);
      --DepotCards-cardBorder: rgba(255,255,255,0.10);
      --DepotCards-text: var(--text-color-dark);
      --DepotCards-muted: var(--text-color-light);
      --DepotCards-pill: var(--line-color-02);
	  --DepotCards-pill-color: var(--text-color-dark);
      --DepotCards-pillBorder: rgba(255,255,255,0.18);
      --DepotCards-focus: rgba(255,255,255,0.20);
	 
    }

    .DepotCards-wrap {
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial;
      color: var(--DepotCards-text);
      background: radial-gradient(1200px 600px at 20% 0%, rgba(255,255,255,0.10), transparent 60%),
                  radial-gradient(900px 500px at 80% 10%, rgba(255,255,255,0.07), transparent 55%),
                  var(--DepotCards-bg);
      padding: 32px 16px 56px;
    }

    .DepotCards-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .DepotCards-header {
      display: flex;
      gap: 16px;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .DepotCards-title {
      font-size: clamp(22px, 2.4vw, 32px);
      line-height: 1.2;
      margin: 0;
      letter-spacing: -0.02em;
    }

    .DepotCards-sub {
      margin: 6px 0 0;
      color: var(--DepotCards-muted);
      font-size: 14px;
      max-width: 58ch;
    }

    .DepotCards-controls {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .DepotCards-input {
      background: rgba(0,0,0,0.20);
      border: 1px solid var(--DepotCards-cardBorder);
      color: var(--DepotCards-text);
      border-radius: 12px;
      padding: 10px 12px;
      min-width: 240px;
      outline: none;
    }
    .DepotCards-input:focus {
      border-color: var(--DepotCards-focus);
      box-shadow: 0 0 0 4px rgba(255,255,255,0.07);
    }

    .DepotCards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    @media (max-width: 980px) {
      .DepotCards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 620px) {
      .DepotCards-grid { grid-template-columns: 1fr; }
      .DepotCards-input { min-width: 0; width: 100%; }
    }

	.DepotCards-name {
		color: var(--text-color-light);		
	}
    .DepotCards-card {
      background: var(--color-dark);
      border: 1px solid var(--DepotCards-cardBorder);
      border-radius: 18px;
      padding: 16px;
      backdrop-filter: blur(8px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 170px;
    }

    .DepotCards-name {
      font-weight: 650;
      letter-spacing: -0.01em;
      margin: 0;
      font-size: 16px;
      line-height: 1.25;
    }

    .DepotCards-meta {
      display: grid;
      gap: 8px;
    }

    .DepotCards-row {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--DepotCards-muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .DepotCards-ico {
      width: 18px;
      height: 18px;
      opacity: 0.9;
      margin-top: 1px;
    }

    .DepotCards-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
    }

    .DepotCards-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 1px 5px;
      border-radius: 0.75rem;
      border: 1px solid var(--DepotCards-pillBorder);
      background: var(--DepotCards-pill);
      color: var(--DepotCards-pill-color);
      font-size: 0.75rem;
      letter-spacing: 0.01em;
      user-select: none;
    }

    .DepotCards-actions {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .DepotCards-link {
      color: rgba(255,255,255,0.92);
      text-decoration: none;
      font-size: 13px;
      border: 1px solid var(--DepotCards-cardBorder);
      padding: 9px 12px;
      border-radius: 12px;
      background: rgba(0,0,0,0.18);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
    }
    .DepotCards-link:hover {
      transform: translateY(-1px);
      background: rgba(0,0,0,0.26);
      border-color: rgba(255,255,255,0.20);
    }

    .DepotCards-count {
      color: var(--DepotCards-muted);
      font-size: 13px;
      white-space: nowrap;
    }

    /* Embedded map above search */
    .DepotCards-mapWrap {
      width: 100%;
      border: 1px solid var(--DepotCards-cardBorder);
      border-radius: 18px;
      overflow: hidden;
      background: var(--color-dark);
      margin: 0 0 16px 0;
    }

    .DepotCards-mapIframe {
      width: 100%;
      height: 320px;
      border: 0;
      display: block;
    }

    .DepotCards-mapCaption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      color: var(--DepotCards-muted);
      font-size: 13px;
      border-top: 1px solid var(--DepotCards-cardBorder);
    }

    .DepotCards-mapLink {
      color: var(--DepotCards-text);
      text-decoration: none;
      border: 1px solid var(--DepotCards-cardBorder);
      padding: 7px 10px;
      border-radius: 12px;
      background: rgba(0,0,0,0.18);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .DepotCards-mapLink:hover {
      background: rgba(0,0,0,0.26);
      border-color: rgba(255,255,255,0.20);
    }

    @media (max-width: 620px) {
      .DepotCards-mapIframe { height: 240px; }
      .DepotCards-mapCaption { flex-wrap: wrap; }
    }
/* Country filter + pagination + load-in animation */
.DepotCards-select {
  min-width: 190px;
}

.DepotCards-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.DepotCards-pageBtn {
  background: rgba(0,0,0,0.20);
  border: 1px solid var(--DepotCards-cardBorder);
  color: var(--DepotCards-text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.DepotCards-pageBtn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.DepotCards-pageInfo {
  opacity: 0.85;
  font-size: 0.95rem;
}

.DepotCards-empty {
  padding: 18px;
  border: 1px dashed var(--DepotCards-cardBorder);
  border-radius: 14px;
  opacity: 0.85;
}

.DepotCards-animateIn {
  animation: DepotCards_in 420ms ease-out both;
}

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

@media (prefers-reduced-motion: reduce) {
  .DepotCards-animateIn { animation: none !important; }
}


/* Country dot next to depot name */
.DepotCards-countryDot{
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  flex: 0 0 auto;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.25);
}
.DepotCards-name{
  display:flex;
  align-items:center;
}


.DepotCards-pillFilters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 16px;
}

.DepotCards-pillBtn{
	border: 1px solid var(--DepotCards-pillBorder);
  background: rgba(0,0,0,0.18);
  color: var(--DepotCards-text);
  border-radius: 0.75rem;
  padding: 1px 5px;
  font-size: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.DepotCards-pillBtn[aria-pressed="true"]{
  background: var(--DepotCards-pill);
  border-color: var(--DepotCards-border);
}

.DepotCards-pillBtn:focus{
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 2px;
}
.depot-pipe-break{
	width: 3px;
	background-color: rgb(40, 43, 46);
	height: 100%;
	border-radius: 3px;
}

.depot-text-black{
	color:#000;
}