.blog-author-heading,
.blog-tag-heading,
.blog-heading{
  padding: 0;
}

.blog-index-heading{
  margin-top: 15px;
  margin-bottom: 60px;
}

.blog-author-index,
.blog-tag-index{
  margin-top: 80px;
}

.blog-author-index .heading-wrapper,
.blog-tag-index .heading-wrapper{
  margin-bottom: 60px;
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-index--small {
  margin-left: -20px;
  margin-right: -20px;
}

.blog-index__post {
  flex: 0 0 100%;
  padding: 1.4rem 1rem;
}

.blog-archive__post a{
  text-decoration: none;
  text-align: center;
  border-radius: 20px 0;
  background-color: #f8f8fa;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blog-index__post--small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 15px;
}
.blog-index__post-content{
  padding:0 20px 85px;
}
.index__post--item{
  height:100%;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #f5f5f5cc;
  position:relative;
}

.blog-index__post-button-wrapper{
  position:absolute;
  bottom:20px;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .blog-index__post--small {
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1025px) {
  .blog-index__post--small {
    flex: 0 0 calc(100% / 3);
  }
}

@media screen and (min-width: 768px) {
  .blog-index__post--large {
    display: flex;
    flex: 1 0 100%;
  }
}

.blog-index__post-image-wrapper{
  display:block;
}
.blog-index__post-image-wrapper--small{
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  padding-top: 37.5%;
  padding-bottom: 37.5%;
}

.blog-index__post-image--small {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease,-webkit-transform .2s ease;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-index__post-image:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-index__post-image--large{
  width: 100%;
}

@media screen and (min-width: 768px) {
  .blog-index__post-image-wrapper--large {
    flex: 1 1 48%;
  }

  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }

  .blog-index__post-content--full-width {
    flex: 1 1 100%;
    padding-left: 0;
  }
}

.blog-index__post-title :is(h1, h2, h3, h4, h5, h6) {
  font-size: 1.25rem;
  margin-bottom: 0px;
}

.blog-index__post-timestamp {
  display: block;
}

.blog-index__post-author {
  align-items: center;
  display: flex;
}

.blog-index__post-author-image {
  border-radius: 50%;
  height: auto;
  margin-right: 0.35rem;
  width: 30px;
}

.blog-index__post-tags,
.blog-index__post-title,
.blog-index__post-timestamp,
.blog-index__post-author,
.blog-index__post-image--small {
  margin: 0 0 0.7rem;
}

.blog-index__post-tags{
  color: #7fccb8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.blog-index__post-title .blog-index__post-title-link {
  font-size: 20px;
}
.blog-index__post-button {
  padding: 8px 20px;
}

//Dropdown
.dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 35px;
}

.dropdown-button svg {
  width: 15px;
  fill: #FFF;
  margin-left: 15px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF;
  min-width: 228px;
  z-index: 1;
  padding: 0;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  max-height: 300px;
  overflow-y: scroll;
}

.dropdown-content li {
  padding: 8px 12px;
  text-decoration: none;
  display: block;
  color: #000;
  cursor: pointer;
}
.dropdown-content li:hover {
  color: #FFF;
  background: #7fccb8;
}
.dropdown-content li:hover a {
  color: #FFF;
}
.dropdown-content li a {
  text-decoration: none;
  font-style: normal;
  font-size: 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.blog-index-heading {
	display:none;
}
