/* Style the dropdown button */
.dropdown {
    display: flex;
    justify-content: flex-end;
    max-width: 247px;
    margin-left: auto;
}
.dropbtn img {
    max-width: 10px;
    height: 10px;
}
.dropbtn {
    background-color: #f0f0f0;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    max-width: 247px;
    width: 100%;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: Roboto, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style the dropdown button on hover 
.dropbtn:hover {
  background-color: #3e8e41;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f0f0f0;
    min-width: 247px;
    border-radius: 10px;
    z-index: 1;
    margin-top: 42px;
}
ul.dropdown-content {
    list-style: none;
    padding: 0;
}
.dropbtn img {
    padding-left: 0px;
}
/* Style the links inside the dropdown */
.dropdown-content a {
  
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  border-radius: 10px;
  color:#0b0b0b;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #0270e0;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn img {
    transform: rotate(180deg);
}

/* Style the caret icon */
.fa-caret-down {
  float: right;
  padding-top: 5px;
}

/* Position the caret icon */
.dropbtn .fa-caret-down {
  margin-left: 5px;
}

.blog-author-heading,
.blog-index__post-tags .blog-index__post-tag {
  color: var(--color-primary);
}

.blog-index__post-tags .blog-index__post-tag {
  font-size: var(--fs-small);
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.blog-index {
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
}

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

.blog-index__post-image {
  height: auto;
  max-width: 100%;
}

.blog-index__post-title {
  font-size: 1.25rem;
}

.blog-index__post-timestamp {
  flex: 0 0 100%;
  font-size: var(--fs-small);
  max-width: calc(100% - 30px);
}

.blog-index__post-timestamp-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-index__post-author {
  align-items: center;
  display: flex;
  font-size: var(--fs-small);
}

.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-wrap,
.blog-index__post-author,
.blog-index__post-image--small {
  margin: 0 0 0.7rem;
}

@media screen and (min-width: 768px) {
  .blog-index__post--small {
    flex: 0 0 50%;
  }
  
  .blog-index__post--large {
    display: flex;
    flex: 1 0 100%;
  }
  
  .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;
  }
}

@media screen and (min-width: 1000px) {
  .blog-index__post--small {
    flex: 0 0 33.3333333333%;
  }
}
