#featured-stories-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content:center;
  margin-top: 30px;

      transition: all 0.3s ease-in-out 0s;
}

.featured-story {
  --featured-width: min(70vw, 370px);
  width: var(--featured-width);
  height: var(--featured-width);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;

    transition: all 0.3s ease-in-out 0s;
}

.featured-preview {
  position: relative;
  bottom: 0px;
}

.story {
  position: relative;
  top: var(--featured-width);
  max-width: inherit;
  max-height: inherit;
  height: inherit;
  overflow: hidden;
  padding-top: 30px;
  padding: 20px;
  transition: all 0.3s ease-in-out 0s;
  background:  rgba(255,255,255,0.8);
  text-align: justify;
  display: flex;
  flex-direction: column;
}

.featured-story:hover .story, .show-story{
  top: 0px !important;
}

.story-heading {
  margin-bottom: 10px;
  text-align: center;
}

.story-heading a {
  text-decoration: none;
  font-size: min(30px, max(5.5vw, 20px));
  font-family: "Sora", sans-serif;
  font-weight: bolder;
  color: black;
}

.story-heading a:hover {
  color: rgba(90,90,90,1);
}

.story p{
  font-family: OpenSans, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 400px){
  .story-subheading {
    font-size: max(12px, 3vw) !important;
  }
}

.story-subheading {
  font-size: 14px;
  margin-bottom: 10px;
}

.story-subheading a{
  text-decoration: none;
  color: #3CAEB5;
  font-size: inherit;
}

.story-subheading a:hover{
  color: #1F6569;
}

.read-more {
  text-decoration: underline;
  align-self: flex-end;
  margin-top: 20px;
}
