/* sidebar.css */

.right-sidebar {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 40px;
  border: 1px solid var(--light-border);
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  margin: 0;
  padding: 20px;
}

.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 40px;
  margin-bottom: 20px;
  border: 1px solid var(--light-border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
  border-bottom: 1px solid var(--light-border);
  font-family: 'chewy', sans-serif;
  font-weight: 100;
  font-size: 24px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  color: var(--dark-blue);
}

.sidebar-box h3 a {
  color: var(--dark-blue);
  text-decoration: none;
}


.sidebar-post {
  display: flex;
  margin-bottom: 15px;
  gap: 10px;
}

.sidebar-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.post-content {
  flex: 1;
}

.post-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.post-title {
  font-size: 14px;
  font-family: 'chewy', sans-serif;
  font-weight: 100;
  color: var(--dark-blue);
  text-decoration: none;
  line-height: 1.2;
  display: block;
}

.post-title:hover {
  color: var(--orange);
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-thumbs img {
  /* width: calc(30% - 5px); */
  width: 30%;
  border-radius: 20px;
  object-fit: scale-down;
}

