.bm-4 {
  margin: 2rem 0rem;
  background-color: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-speed);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
.bm-4:hover {
  filter: drop-shadow(0 0 0.75rem var(--accent));
}

.btn-glow {
  margin: 10px auto;
  background-color: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-speed);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  width: fit-content;
}
.btn-glow:hover {
  background-color: black;
  filter: drop-shadow(0 0 0.75rem var(--accent));
}

.interview {
  border-radius: var(--border-radius);
  padding: 10px;
  display: flex;
  flex-direction: row;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
}
.interview .image {
  height: 400px;
  width: 400px;
  background-size: cover;
  border-radius: var(--border-radius);
}
.interview .content {
  width: 100%;
  padding: 0 10px;
}
.interview .content .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.interview .content .description {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.interview .content .author {
  font-size: 1rem;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .interview {
    padding: 5px;
    flex-direction: column;
    align-items: center;
  }
  .interview .image {
    width: 100%;
  }
  .interview .content {
    width: 100%;
    padding: 0 10px;
  }
  .interview .content .title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .interview .content .description {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .interview .content .author {
    font-size: 1rem;
    font-weight: bold;
  }
}

/*# sourceMappingURL=generic.css.map */
