section,
.content__tags {
  margin-top: 2rem;
}

.content__bio {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.content__photo {
  max-width: 300px;
  margin: 0 auto;
}

.content__photo img {
  box-shadow: 0 0 0.8rem #d31616;
  border-radius: 0.3rem;
}

.content__text {
  flex: 1;
}

.content__parameters {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.content__parameter {
  flex: 1;
}

.content__parameter {
  background-color: #fafafa;
  padding: 1.2rem;
  border-top: solid 5px #d31616;
  box-shadow: 0 0 0.3rem #535353;
  max-width: 500px;
}

.parameter {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #ccc;
}

.content__subTitle {
  text-align: center;
}

.content__galeryPhoto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.content__galeryPhoto img {
  border: 1px solid #d31616;
  border-radius: 0.2rem;
  transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.content__galeryPhoto img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0.8rem #000;
}

.content__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
}

.content__tags a {
  color: #fff;
  padding: 0.2rem 0.3rem;
  background-color: #3e3e3e;
  border-radius: 0.1rem;
  text-align: center;
}

.content__tags a:hover {
  background-color: #262626;
  transform: scale(1.05);
  transition: 0.4s;
  box-shadow: 0 0 0.1rem #000;
  color: #fff;
}

.content__similar-actresses {
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  border: 0.1rem solid #d31616;
  border-radius: 0.2rem;
  padding: 1rem;
  background-color: #fafafa;
  text-align: center;
  gap: 1rem;
}

.content__similar-actress {
  box-shadow: 0 0 0.3rem #d31616;
  border-radius: 0.2rem;
}

.content__similar-actress img {
  border-radius: 0.2rem 0.2rem 0 0;
}

.content__similar-actress:hover {
  transform: scale(1.05);
  transition: 0.6s;
}

.content__comment {
  padding: 0.6rem;
  box-shadow: 0 0 0.3rem #d31616;
  border-radius: 0.2rem;
  background-color: #fff;
  margin-bottom: 1rem;
  border-top: solid 0.15rem #d31616;
}

.content__comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.content__comment-text {
  padding: 0.3rem;
  text-align: left;
}

.content__comment-photo img {
  border-radius: 0.3rem;
  margin-right: 0.6rem;
  display: block;
}

.content__comment-top {
  display: flex;
  flex-direction: column;
}

.content__comment-username {
  font-size: 1rem;
}

.content__comment-date {
  font-size: 0.8rem;
  color: #616161;
}

/* АДАПТИВНОСТЬ-----------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------*/

@media (max-width: 1140px) {
  .content__similar-actresses {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 850px) {
  .content__title {
    text-align: center;
  }

  .content__bio,
  .content__parameters {
    display: block;
  }

  .content__parameter {
    margin: 1rem auto 0;
  }
}

/* -----------------------------------------------------------------------*/
@media (max-width: 500px) {
  .content__galeryPhoto {
    gap: 0.8rem;
  }

  .content__galeryPhoto a {
    max-width: 45%;
  }
}

/* -----------------------------------------------------------------------*/
@media (max-width: 380px) {
  .content__galeryPhoto a {
    max-width: 100%;
  }

  .parameter {
    display: block;
  }

  .parameter__title,
  .parameter__value {
    text-align: center;
  }
}
