/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin-left: -2px;
}

/* Thumbnails */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(273px, 1fr));
  margin-top: 30px;
/*   margin-left: 2px;*/
  padding: 0 10px;
  border-radius: 39px 39px 0 0;
  box-sizing: border-box;
}

.round img {
  border-radius: 39px 39px 0 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

.thumbnails figure {
  position: relative;
  height: 273px; /* Feste Höhe für einheitliche Darstellung */
  cursor: pointer;
  display: inline-block;
  overflow: hidden; /* Versteckt Überlauf */
}

.thumbnails figure img {
  width: 100%; /* Bild auf 100% der Containerbreite setzen */
  height: 120%; /* Bildhöhe auf 120% setzen, um 20% unten abzuschneiden */
  object-fit: cover; /* Bild proportional zuschneiden */
  object-position: bottom; /* Bild von unten ausrichten */
  z-index: 50;
  position: relative;
  display: block;
  opacity: 0.69;
}

.thumbnails figure figcaption {
  opacity: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  backface-visibility: hidden;
}

.articlebase {
  display: flex;
  margin: 0;
  padding: 3px 15px 3px 15px;
  font-family: var(--f-f);
  font-size: clamp(0.94rem, 0.92rem + 0.07vw, 0.99rem);
  color: rgba(var(--white), 0.9);
}

.articledate {
  margin-left: auto;
  order: 2;
}

.articlenav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; 
  width: 100%;
  box-sizing: border-box; 
}

.articlenav > p {
  flex: 33.33%;
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  white-space: nowrap; 
}

.articlenav > p:nth-child(2) {
  text-align: center;
}

.articlenav > p:nth-child(3) {
  text-align: right;
}


.smoke {
  background: rgba(var(--smoke), 0.51);
}

.fog {
  background: rgba(var(--white), 0.51);
}

.mist {
  background: rgba(var(--white), 0.18);
}

.subtle {
  background-image: linear-gradient(
    169deg,
    rgba(var(--white), 0.27) 18%,
    transparent
  );
}
