/* FELZÁRKÓZÁS STILUSOK */

#recent-cont {
  display: flex;
  flex-flow: row nowrap;
  overflow-x: auto;
  column-gap: 2rem;
  width: 100%;
  min-width: 0;
  padding: 1rem;
  margin-bottom: 2rem;
}

#recent-cont .recent-profile {
  width: 5.5rem;
  flex: 0 0 5.5rem;
  cursor: pointer;
}

#recent-cont .recent-profile .recent-profile-pfp {
  position: relative;
  background-color: var(--PRIMARY);
  border-radius: 50%;
  padding: 6px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

#recent-cont .recent-profile .recent-profile-pfp::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: calc(5.5rem + 6px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: conic-gradient(rgb(248, 199, 64), rgb(221, 217, 158), rgb(228, 102, 43), rgb(248, 199, 64));
}

#recent-cont .recent-profile .recent-profile-username {
  font-size: 1rem;
  line-height: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* HÍRFOLYAM STILUSOK */

.post {
  margin-bottom: 1rem;
  padding: 2rem;
}

.post .post-author {
  display: flex;
  column-gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.post .post-author .author-pfp {
  border-radius: 100%;
}

.post .post-author .author-name {
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post .post-content img {
  display: block;
  width: clamp(300px, 100%, 1200px);
  max-height: 700px;
  object-fit: contain;
  height: auto;
  margin: auto;
  /* max-height: 1000px; */
}

.post .post-content .img-cont {
  background-color: black;
  margin: 0.5rem 0;
}

@media screen and (max-width: 768px) {
  
}