.blogs {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blogs .no-blogs-posted {
  margin: auto;
}

article {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 2rem;
  border: 1px solid grey;
  padding: 2rem;
  background-color: #fbfbfb;
  color: black;
  border-radius: 20px;
}

article h2 {
  text-transform: capitalize;
}

article h2::after {
  content: "";
  border-bottom: 2px solid darkslategrey;
  bottom: 0px;
}

.times {
  display: flex;
  align-content: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

article time {
  font-size: 0.8rem;
  color: grey;
}

.more-options-dropdown {
  position: absolute;
  top: 10px;
  right: 25px;
}

.more-options-dropdown button {
  border: none;
  background-color: inherit;
  font-size: 1.4rem;
  color: darkslategrey;
  font-weight: 600;
}

.more-options-content {
  display: none;
}

.read-more {
  color: black;
  -webkit-text-stroke: thin;
  width: max-content;
}

.read-more:hover {
  cursor: pointer;
  filter: brightness(0.8);
}

@media screen and (max-width: 450px) {
  article {
    margin: 2rem 0;
  }
}