section.address {
  z-index: 0 !important;
  position: relative;
}

@media (min-width: 992px) {
  section.address {
    display: flex;
    align-items: center;
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  section.address #map {
    margin-bottom: 1rem;
    width: 100%;
    height: 200px;
  }
}

@media (min-width: 992px) {
  section.address #map {
    opacity: 0.6;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}

section.address .container {
  z-index: 2 !important;
  position: relative;
}

@media (min-width: 992px) {
  section.address .addressinformation {
    display: flex;
  }
}

@media (max-width: 991px) {
  section.address .addressinformation {
    display: flex;
  }
}

.cs-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cs-filters__group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (max-width: 575px) {
  .cs-filters__group {
    flex-direction: column;
    gap: 0.4rem;
  }
}

.cs-filters__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
  padding-top: 0.45rem;
  width: 60px;
  flex-shrink: 0;
}

.cs-filters__toggle {
  background: none;
  border: none;
  padding: 0.45rem 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cs-filters__toggle[aria-expanded=true] .cs-filters__chevron {
  transform: rotate(180deg);
}

.cs-filters__chevron {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

@media (min-width: 768px) {
  .cs-filters__chevron {
    display: none;
  }
}

@media (max-width: 767px) {
  .cs-filters__pills--collapsible {
    max-height: 0;
    overflow: hidden;
    flex-wrap: wrap;
    transition: max-height 0.25s ease;
  }

  .cs-filters__pills--collapsible.is-open {
    max-height: 500px;
  }
}

.cs-filters__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cs-filters__admin {
  padding-top: 0.25rem;
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #081245;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-decoration: none;
}

.cs-pill .fi {
  font-size: 0.9rem;
}

.cs-pill:hover {
  text-decoration: none;
  border-color: #1C73E6;
  color: #1C73E6;
}

.cs-pill--active {
  border-color: #1C73E6;
  background: #1C73E6;
  color: #fff !important;
}

.cs-pill--active:hover {
  background: #1661c4;
  border-color: #1661c4;
  color: #fff;
}

.cs-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
}

.cs-grid__item.hidden {
  display: none;
}

.cs-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #fff;
  color: #081245;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cs-tile:hover {
  text-decoration: none;
  color: #081245;
  box-shadow: 0 8px 28px rgba(8, 18, 69, 0.1);
  transform: translateY(-2px);
}

.cs-tile:hover .cs-tile__thumb img {
  transform: scale(1.04);
  opacity: 1;
}

.cs-tile:hover .cs-tile__cta {
  color: #1C73E6;
}

.cs-tile:hover .cs-tile__cta i {
  transform: translateX(3px);
}

.cs-tile__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #EBF3FB;
}

.cs-tile__thumb div {
  width: 100%;
  height: 100%;
}

.cs-tile__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0.75;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.cs-tile__flag {
  position: absolute;
  bottom: 0.65rem;
  left: 0.75rem;
  font-size: 1.3rem;
  line-height: 1;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.cs-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.1rem;
}

.cs-tile__type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1C73E6;
  margin-bottom: 0.3rem;
  display: block;
}

.cs-tile__name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #081245;
  margin-bottom: 0.55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cs-tile__cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s;
  margin-top: auto;
}

.cs-tile__cta i {
  transition: transform 0.2s ease;
}

