.profile-main {
  width: 70vw;
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 200px;
  background-color: rgba(26, 26, 26, 0);
  border: 2px solid white;
  color: white;
  border-radius: 24px;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.25);
  padding: 0px 106px;
}

.profile-img {
  border: 2px solid white;
  background-color: rgba(26, 26, 26);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
}

.info-box {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.info-box h2 {
  font-size: 0.7rem;
  margin-top: 6px;
}

.info-box p {
  margin-top: 54px;
}

.numbers-info-box {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 54px;
  margin-bottom: 54px;
}

.numbers-info-box span {
  font-size: 1.25rem;
  font-weight: 700;
}

.numbers-info-box h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 6px;
}

.community-posts-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 120px;
  background-color: rgba(26, 26, 26, 0);
  border: 2px solid white;
  color: white;
  border-radius: 24px;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.25);
  padding: 0px 24px;
}

.community-posts {
  width: 100%;
  margin-bottom: 32px;
}

.community-posts-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.community-posts-title p {
  margin-top: 32px;
  margin-bottom: 60px;
  border: 2px solid white;
  border-radius: 16px;
  width: fit-content;
  padding: 8px 24px;
}

.community-post {

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-size: 0.8rem;
}

@media only screen and (max-width: 800px) {
  .community-post {
    flex-direction: column;
  }

  .community-posts {
    margin-left: 0;
  }
}

@media only screen and (max-width: 600px) {
  .profile-container {
    padding: 0 40px;
  }
  
  .numbers-info-box {
    flex-direction: column;
  }

  .community-posts-container {
    width: auto;
  }

  audio {
    width: 220px;
  }
}
