/* SIDEBAR */
#sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .social-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#sidebar .social-media .socials {
  display: flex;
  gap: 16px;
}
#sidebar .recent-posts .recent-post__title-wrapper {
  border-bottom: 2px solid #fff;
}
#sidebar .recent-posts .recent-post__title-wrapper h4 {
  margin-bottom: 0;
}
#sidebar .recent-posts .recent-post__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#sidebar .recent-posts .recent-post__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
#sidebar .recent-posts .recent-post__item img {
  max-width: 100px;
  width: 100%;
}
#sidebar .recent-posts .recent-post__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.side-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.side-banner img {
  width: 100%;
  border-radius: 8px;
}