.blocks {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.blocks-floater {
  margin-top: -180px;
}

.blocks-choice,
.blocks-end {
  margin-top: 60px;
  margin-bottom: 60px;
}

.block {
  display: flex;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 20%;
  background-color: #fff;
  padding: 15px;
  margin-left: 20px;
  margin-right: 20px;
  grid-auto-rows: 1fr;
  flex-direction: column;
}

.block-header {
  background-color: #f2f2f2;
  display: flex;
  margin-bottom: 20px;
  height: 120px;
}

.block-header-info {
  padding: 15px;
}

.block-title {
  font-family: Proxima Bold !important;
  font-size: 16px;
  margin-bottom: 3px;
}

.block-content {
  font-size: 10pt;
  line-height: 120%;
}

.block-time {
  font-size: 12px;
}

.block-time i {
  margin-right: 3px;
}

.block-tags {
  margin-top: 14px;
  background-color: #fff;
  padding: 4px;
  font-size: 12px;
  width: fit-content;
}

.block-image {
  display: block;
  width: 120px;
  max-width: 50%;
  height: 120px;
  object-fit: cover;
  background-image: url("assets/blocks/placeholder.jpg");
}

.block-variant {
  margin-top: 20px;
}

.block-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* align-self: flex-end; */
  margin-top: auto;
  padding-top: 20px;
}

.block-footer .block-type {
  text-align: right;
}

.block-type {
  font-weight: bold;
}

.dropbtn {
  margin-top: 20px;
  background-color: #fff;
  color: var(--black);
  padding: 10px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  width: 150px;
  font-weight: bold;
  text-align: left;
}

.dropbtn::after {
  content: "▼";
  float: right;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 150px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

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

.dropdown:hover .dropbtn {
  background-color: #fff;
}
