.map-shell {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.map-container {
  width: 100%;
  display: block;
  text-decoration: none;
}

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.map-image {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
}

.map-position {
  background: pink;
  opacity: 0.8;
  width: 10px;
  height: 10px;
  position: absolute;
  pointer-events: none;
  display: none;
  z-index: 10;
}

.map-tooltip {
  background: rgba(255, 255, 255, 0.8);
  width: min(220px, calc(100% - 1rem));
  min-width: min(150px, calc(100% - 1rem));
  position: absolute;
  pointer-events: none;
  display: none;
  font-family: var(--font-sans);
  font-size: 12px;
  border-radius: 10px;
  padding: 10px;
  color: black;
  z-index: 20;
}

.map-fence {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.newly-feed {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.newly-feed__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.newly-feed__heading {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newly-feed__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newly-feed__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.newly-feed__item p {
  margin: 0;
  font-weight: bold;
}

.newly-feed__thumb {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-size: 1000px 1000px;
  image-rendering: pixelated;
  zoom: 5;
}

@media (min-width: 900px) {
  .newly-feed__items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 450px) {
  .newly-feed {
    grid-template-columns: 1fr;
  }

  .map-tooltip {
    min-width: 0;
  }
}
