.posts {
  overflow: hidden;
}
.posts .section-title {
  text-align: left;
  font-weight: 700;
}
.posts .post-item__columns {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 0;
  position: relative;
}
.posts .posts-content {
  width: 100%;
}
.posts .posts-item__columns-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  height: 918px;
  position: relative;
}
.posts .posts-item__columns-content .post-item {
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  color: #ffffff;
}
.posts .posts-item__columns-content .post-item .post-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.posts .posts-item__columns-content .post-item .author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.posts .posts-item__columns-content .post-item .author .author_image {
  background-color: rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
}
.posts .posts-item__columns-content .post-item .author .author_image img {
  border-radius: 50%;
}
.posts .posts-item__columns-content .post-item .author .author_name {
  flex-grow: 1;
}
.posts .posts-item__columns-content .post-item .author .author_name .author_full_name {
  font-weight: 700;
}
.posts .posts-item__columns-content .post-item .author .author_name .author_username {
  font-weight: 400;
  opacity: 0.5;
}
.posts .posts-item__columns-content .post-item .author .social_icon {
  opacity: 0.5;
}
.posts .posts-item__columns-content .post-item .visual_container {
  border-radius: 12px;
  overflow: hidden;
}
.posts .posts-item__columns-content .post-item .visual_container .video_container img {
  display: none;
}
.posts .posts-item__columns-content .post-item .visual_container .video_container.ios img {
  display: block;
}
.posts .posts-item__columns-content .post-item .visual_container .video_container.ios video {
  display: none;
}
.posts .posts-item__columns-content .post-item .description {
  font-weight: 400;
}
.posts .posts-item__columns-content .post-item .post_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.posts .posts-item__columns-content .post-item .post_footer .post_date {
  display: flex;
  gap: 20px;
}
.posts .posts-item__columns-content .post-item .post_footer .post_date .hour {
  position: relative;
}
.posts .posts-item__columns-content .post-item .post_footer .post_date .hour:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  right: -10px;
  top: 3px;
}
.posts .posts-item__columns-content .post-item .post_footer .post_like {
  background-image: url("../../../../../../uploads/tenweb-theme/images/ai_builder/social_posts/like.svg");
  background-repeat: no-repeat;
  background-position: left center;
}
.posts .posts-item__columns-content .post-item.hovered {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.posts .posts-item__columns-content .post-item.hovered .author_username {
  text-decoration: underline;
}
.posts .posts-item__columns-content .post-item.hovered .post_footer {
  color: #ffffff;
}
.posts .posts-item__columns-content .post-item.hovered .post_like {
  background-image: url("../../../../../../uploads/tenweb-theme/images/ai_builder/social_posts/pink_like.svg");
  color: #E5397F;
}
.posts.blue {
  background: rgba(33, 96, 181, 0.1);
}
.posts.green {
  background: rgba(34, 179, 57, 0.1);
}
.posts.grey {
  background: #F5F5F6;
}
.posts.grey .post-item {
  background: #000000;
}
.posts.dark {
  background: #000000;
}
.posts.dark .section-header * {
  color: #FFFFFF;
}
