.unlabel-story-card {
  transition: transform 0.3s ease;
  background-color: white;
}

.unlabel-story-card:hover {
  transform: scale(1.05);
}

@media (max-width: 850px) {
  #unlabel-stories-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    margin-top: 0.75rem;
  }

  .unlabel-story-card {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    max-width: 550px;
    max-height: 850px;
    overflow: hidden;
    justify-content: space-between;
    border-radius: 0 0 0.75rem 0.75rem;
    border-top-left-radius: 50% 275px;
    border-top-right-radius: 50% 275px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    flex-shrink: 1;
  }
}

@media (min-width: 851px) and (max-width: 950px) {
  #unlabel-stories-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    margin-top: 0.75rem;
  }

  .unlabel-story-card {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    max-width: 400px;
    max-height: 600px;
    overflow: hidden;
    justify-content: space-between;
    border-radius: 0 0 0.75rem 0.75rem;
    border-top-left-radius: 50% 200px;
    border-top-right-radius: 50% 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    flex-shrink: 1;
  }
}

@media (min-width: 951px) and (max-width: 1100px) {
  #unlabel-stories-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    margin-top: 0.75rem;
  }

  .unlabel-story-card {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    max-width: 300px;
    max-height: 600px;
    overflow: hidden;
    justify-content: space-between;
    border-radius: 0 0 0.75rem 0.75rem;
    border-top-left-radius: 50% 150px;
    border-top-right-radius: 50% 150px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    flex-shrink: 1;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  #unlabel-stories-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    margin-top: 0.75rem;
  }

  .unlabel-story-card {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    max-width: 350px;
    max-height: 600px;
    overflow: hidden;
    justify-content: space-between;
    border-radius: 0 0 0.75rem 0.75rem;
    border-top-left-radius: 50% 175px;
    border-top-right-radius: 50% 175px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    flex-shrink: 1;
  }
}

@media (min-width: 1281px) {
  #unlabel-stories-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 0.75rem;
    gap: 0.5rem;
  }

  .unlabel-story-card {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    max-width: 300px;
    max-height: 600px;
    overflow: hidden;
    justify-content: space-between;
    border-radius: 0 0 0.75rem 0.75rem;
    border-top-left-radius: 50% 150px;
    border-top-right-radius: 50% 150px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }
}

.unlabel-story-image-container {
  margin-bottom: 0.5rem;
  justify-self: flex-start;
}

.unlabel-story-thumbnail {
  width: 100%;
  border-radius: 50%;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);

  transform: scale(0.9524); /* 1 / 1.05 */
  transform-origin: center;
}

/* .unlabel-story-thumbnail:hover {
  width: 100%;
  border-radius: 50%;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
} */

.unlabel-story-heading {
  height: 4.25rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #024089;
  display: flex;
  align-items: flex-start;
  line-height: 130%;
  margin-top: 0.5rem;
}

.unlabel-story-heading:hover {
  color: #024089;
}

.unlabel-story-short-content {
  flex-grow: 1;
  color: var(--e-global-color-text);
  margin-bottom: 0;
  text-align: justify;
}

.unlabel-story-date {
  margin-bottom: 0rem;
  margin-top: 0.25rem;
}

.story-readmore {
  text-align: right;
  float: right;
}

/*Animations*/
.spinner {
  animation: initial-card-anim 0.5s ease-in-out;
  transform-style: preserve-3d;
  /* flex-grow: 1; */
}

@keyframes initial-card-anim {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0px);
  }
}
