


.posts-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--homepage-articles-gap);
  @media (max-width: 1000px) {
    flex-direction: column;
    justify-content: start;
  }
}
.latest-posts-wrapper {
  width: 360px;
  flex-shrink: 0;
  @media (max-width: 1200px) {
    width: 300px;
  }
}
.featured-post-wrapper {
  flex:1;
}



.post-full {
  padding: calc(var(--homepage-articles-gap)/2);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: calc(var(--homepage-articles-gap) / 2); */
}

.post-banner img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
  /* background-color: #f5f5f5; */
}

.post-header {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: calc(var(--homepage-articles-gap) / 2);
}
.post-meta {
    flex: 1;
}
.post-title h1 {
    margin-bottom: 0;
    margin-bottom: 0;
    font-size: 1.6rem;
}
.post-title p {
    margin-bottom: 0;
}
.post-title a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: bold !important;
}
.post-title {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.post-content {
  display: block;
  line-height: 1.6;
  /* display: flex;
  flex-direction: column;
  justify-content: start;
  gap: calc(var(--homepage-articles-gap) / 2); */
}

.post-text {
  flex: 1;
}
.post-text h1,h2,h3 {
  /* margin-top: 0px; */
}

.post-logo {
  /* float: left; */
  /* margin: 0px 12px 12px 0px; */
}

.post-logo img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  background-color: var(--bg-card-hover);
}
