.speaker-module-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.speaker-module-container .button-container {
  display: flex;
  min-width: 100px;
  justify-content: space-between;
}
.speaker-module-container .button-container button {
  background-color: white;
  border: solid 4px black;
  color: black;
  text-transform: uppercase;
  padding: 0 30px;
  font-size: 56px;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 960px) {
  .speaker-module-container .button-container button {
    font-size: 30px;
  }
}
.speaker-module-container .speaker-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 46px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.speaker-module-container .speaker-container .speaker-item {
  position: relative;
  background-color: #E41425;
  display: flex;
  flex-direction: column;
  width: 449px;
  height: 640px;
  display: none;
  /* Hide all items initially */
}
@media (max-width: 959px) {
  .speaker-module-container .speaker-container .speaker-item {
    height: 540px;
  }
}
.speaker-module-container .speaker-container .speaker-item a {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  z-index: 2;
}
.speaker-module-container .speaker-container .speaker-item h3 {
  margin-top: 24px;
}
.speaker-module-container .speaker-container .speaker-item .post-thumbnail {
  width: 100%;
  height: 65%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 959px) {
  .speaker-module-container .speaker-container .speaker-item .post-thumbnail {
    height: 70%;
  }
}
.speaker-module-container .speaker-container .speaker-item .post-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 35%;
  padding: 0 25px;
}
@media (max-width: 959px) {
  .speaker-module-container .speaker-container .speaker-item .post-contents {
    height: 30%;
  }
}
.speaker-module-container .speaker-container .speaker-item .post-contents .post-title {
  color: white;
  text-align: center;
  margin: 0;
  font-weight: bold;
  font-size: 30px;
  font-family: "Arsenal", sans-serif;
}
@media (max-width: 959px) {
  .speaker-module-container .speaker-container .speaker-item .post-contents .post-title {
    font-size: 28px;
  }
}
.speaker-module-container .speaker-container .speaker-item .post-contents .speaker-occupation {
  color: white;
  text-align: center;
  margin: 10px 0;
  font-weight: 400;
  font-size: 20px;
  font-family: "Arsenal", sans-serif;
}
@media (max-width: 959px) {
  .speaker-module-container .speaker-container .speaker-item .post-contents .speaker-occupation {
    font-size: 16px;
  }
}

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