button.blog-toggle {
  transition: 0.3s;
  border-radius: 5px;
  padding: 10px 20px;
  line-height: 1;
  min-height: auto;
  background: #1f123570;
}

button.blog-toggle:hover {
  background: #1f1235;
}

.blog-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.blog-content.blog-expand {
  height: max-content;
  padding: 24px;
  opacity: 1;
}
