.whats-new-title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #e2eded;
}

.whats-new-title > h2 {
    margin-top: 0.5em;
    align-self: center;
}

.main {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    /*background-color: #e2eded;*/
    background: rgb(226, 237, 237);
    background: linear-gradient(180deg, rgba(226, 237, 237, 1) 25%, rgba(226, 237, 237, 1) 50%, rgba(248, 248, 248, 1) 75%);
    flex: 0;
    margin-top: 0;
    margin-bottom: 1.2em;
}

/*   .main > div {
    background-color: #e2eded;
    margin: 1em 2.2em 2em;
    padding: 1em;
} */

.main > .image-stack {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 0 1.2em .5em;
    padding: .5em;
}

.main > .image-stack > img a {
    align-self: center;
    background-color: #e2eded;
    margin: 0 1em 1em;
    padding: .5em;
}

.image-stack > h3 {
    align-self: center;
    color: #8b5252;
}

.image-stack > p {
    font-size: .8em;
    align-self: center;
}

.tiles-title {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.tiles-title > h2 {
    margin-top: 0;
    align-self: center;
}

/* caption on image hover */

.image-caption-container {
  position: relative;
  display: block;
  width: 234px;
  height: 172px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer; /* 👈 Make cursor a pointer on hover */
}

.image-caption-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-caption-container .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  box-sizing: border-box;
  text-align: center;
}

.image-caption-container .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33.33%; /* Bottom third */
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1rem;
  line-height: 1.1rem;
  display: flex;
  align-items: center;
}

.image-caption-container:hover .caption {
  opacity: 1;
}

hr.style-seven {
    overflow: visible; /* For IE */
    height: 30px;
    border-style: solid;
    border-color: #D3D3D3;
    border-width: 1px 0 0 0;
    border-radius: 20px;
/*    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
}
hr.style-seven:before { /* Not really supposed to work, but does */
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: #999;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}

hr {
    max-width: 75%;
    margin: 2em auto 0;
}

/*hr {
    max-width: 75%;
    margin-top: 2em;
    margin: auto;
    border-bottom: #eee 1px dotted !important;
}*/