.main-content {
    color: white;
    margin: 70px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: fit-content;
    padding: 0;
    overflow-y: hidden;
    z-index: 2;
}

.group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.post {
width: 100%;
text-align: start;
word-break: normal;
border-bottom: #101010 1px solid;
}

.post:hover {
  background-color: #070707;
}

.post-content {
    border-radius: .5rem;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    padding-bottom: 20px;
}

.post-image {
  object-fit: cover;
  object-position: center;
  height: 300px;
  width: 100%;
  border-radius: .5rem;
}

.post-description-title {
  font-size: 20px;
  font-weight: bold;
  align-self: flex-start;
}

.post-description_div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.post-description_seemore {
  margin-top: 8px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: start;
  color: #1DB954;
  background-color: transparent;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
}

.post-description_seemore:hover {
  text-decoration: underline;
}

.post-description {
  font-weight: 300;
  margin: 5px 0;
  text-overflow: ellipsis;
  font-size: 16px;
  color: #cfcfcf;
  width: 100%;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-listen {
  display: flex;
  margin-top: 20px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.post-listen data {
  color: #222;

}

.post-listen div {
  display: flex;
  gap: 5px;
}



.post-listen .fab {
  font-size: 20px;
  color: white;
  width: 30px;
}

.post-listen .ext {
  width: 30px;
}

.post-listen .ext img {
  height: 20px;
}

.post-listen .text {
  font-weight: 700;
  font-size: 16px;
}



#search-result {
  display: none;
}