.post__content {
  display: flex;
  
}
.post__medias {
  display: flex;
  overflow-y: hidden;
  overflow-x: auto;

  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.post__medias::-webkit-scrollbar {
  display: none;
}
.post-text{
  
  padding: 0px;
  margin: 5px;
  /*margin-right: 66px;*/
}
.post__media {
  display: inline-block;
  width: 100%;
  object-fit: contain;
  min-height: 350px;
   min-width: 340px;
   flex-grow: 1;
  object-position: center;
  background: black;
  flex: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.post {
  width: 100%;
  display: block;
  flex-direction: column;
  overflow: hidden;
}

.posts {
  gap: 24px;
}

.post__left-button {
  width: 30px;
  height: 30px;
  display: none;

  background-color: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));

  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 1;
}

.post__right-button {
  width: 30px;
  height: 30px;
  display: none;

  background-color: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));

  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
}

:root {
 
  --link: hsl(204, 100%, 48%);
  --text-light: hsl(0, 0%, 60%);
  --text-dark: hsl(0, 0%, 15%);
  --like: hsl(355, 82%, 61%);
}
.post__indicators {
  display: flex;
  align-items: center;
  gap: 4px;

  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 2px;
}
.post__indicator {
  clear: both;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-light);
}
.post__indicator--active {
  background-color: var(--link);
}


.post__footer {
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.post__buttons {
  /*margin-right: 66px;*/
  display: flex;
  position: relative;
}
.post__button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
