* {
  box-sizing: border-box;
}

.social-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.social-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.social-carousel-item {
  min-width: calc(100%);
  max-height: 630px;
  background: #ececec;
  padding: 1.5rem 0.6rem;
  border-radius: 8px;
}

.social-carousel-item img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.social-carousel-caption img {
  width: 36px;
  height: 36px;
}

.social-carousel-caption {
  display: flex;
  align-items: start;
  padding-top: 6px;
  column-gap: 10px;
}

.social-carousel-caption span {
  font-size: 0.875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.social-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  bottom: 0;
  width: 100%;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #d9d9d9;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: transparent;
  border: 4px solid #d9d9d9;
}
