.home-page {
  width: 100%;
}
.home-page h1 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.home-page h2 {
  font-size: 24px;
  text-align: center;
}
.home-page h3 {
  font-size: 20px;
  text-decoration: underline;
  text-align: center;
  font-weight: bold;
}
.home-page h4 {
  font-weight: bold;
}
.home-page .image-box-no-width {
  position: relative;
  padding: 2px 6px 2px 2px;
  margin-right: auto;
  margin-left: auto;
  width: 80%;
  max-width: 100%;
  margin-top: 19px;
  background-color: white;
  border: thin solid #eaeaea;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  -moz-box-shadow: 0px 0px 25px 0px rgba(178, 178, 178, 0.5);
  box-shadow: 0px 0px 22px 0px rgba(189, 186, 186, 0.5);
}
.home-page .image-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 350px;
  transition: max-height 0.4s ease;
  border-radius: 8px;
  /* ⬇ nav buttons */
  /* Logical properties keep it RTL-safe */
}
.home-page .image-carousel .track {
  display: flex;
  will-change: transform;
  transition: transform 280ms ease;
  touch-action: pan-y;
}
.home-page .image-carousel .slide {
  min-width: 100%;
  user-select: none;
  pointer-events: none;
}
.home-page .image-carousel .slide img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.home-page .image-carousel .nav {
  position: absolute;
  /* <-- key */
  top: 50%;
  /* center vertically */
  transform: translateY(-50%);
  /* center vertically */
  z-index: 2;
  /* on top of images */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  /* tighter arrow centroid */
  background: rgba(0, 0, 0, 0);
  color: blue;
  border: 0;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  /* ensure clickable over slides */
}
.home-page .image-carousel .nav:hover {
  background: rgba(0, 0, 0, 0.11);
}
.home-page .image-carousel .nav.prev {
  inset-inline-start: 4px;
  font-size: 38px;
}
.home-page .image-carousel .nav.next {
  inset-inline-end: 4px;
  font-size: 38px;
}
.home-page .image-carousel .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 2;
}
.home-page .image-carousel .dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.home-page .image-carousel .dots button.is-active {
  background: rgba(0, 0, 0, 0.6);
}
.home-page .caption {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  padding: 0;
  background: #0000004a;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  pointer-events: none;
  z-index: 3;
}
.home-page .image-carousel.expanded {
  max-height: none;
}
.home-page .toggle-carousel {
  float: right;
  background-color: #c6c7c733;
}
.home-page .topic-heading {
  font-size: 14px;
  font-weight: bold;
}
.home-page .social-media-box {
  width: 50%;
  mon-width: 365px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 668px) {
  .home-page .row {
    padding-left: initial;
  }
  .home-page .row .row-text {
    width: 93%;
    margin-right: auto;
    margin-left: auto;
  }
  .home-page .row .social-media-box {
    min-width: 250px;
    width: 90%;
  }
  .home-page .row .image-box-no-width {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .home-page .row .image-box-no-width {
    width: 100%;
  }
}
