body {
  background-color: #BBFFFF;
  font-family: system-ui, sans-serif;
  margin: 1rem;
}

.center-container {
  display: flex;
  /* Centers children horizontally */
  justify-content: center;
  /* Centers children vertically (optional, requires a defined height) */
  align-items: center; 
  height: 100px; /* Example height for vertical centering to work */
}

/* Default: 3 columns */
.grid {
  display: grid;
  padding: 10px;
  gap: 10px;
  max-width: 1100px;  /* tweak */
  margin: 0 auto;    
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Phone-ish: 2 columns */
@media (max-width: 700px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card{
  aspect-ratio: 328 / 128;
  overflow: hidden;
  display: block;           /* not a centered grid anymore */
  border: 3px solid black;
  box-sizing: border-box;
}

.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills tile, crops if needed */
  display: block;
}

.card:hover {
  border-color:red;
}
  
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 10px 12px;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-banner__img {
  flex: 0 0 auto;
  width: 32px;
  height: 31px;
}

.cookie-banner__text {
  flex: 1 1 auto;
  line-height: 1.2;
}

.cookie-banner__small {
  opacity: 0.9;
  font-size: 0.92rem;
  margin-top: 2px;
}

.cookie-banner__actions {
  flex: 0 0 auto;
}

.cookie-banner__btn {
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
}

  