/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
.member-post-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2rem;
}

.member-post-thumbnail {
  flex: 0 0 160px;
  max-width: 160px;
  overflow: hidden;
  border-radius: 8px;
}

.member-post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.member-post .post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #e63946; /* same red as Log Out button */
  margin-bottom: 10px;
}


.member-post-title a {
  color: inherit;
  text-decoration: none;
}

.member-post-title a:hover {
  text-decoration: underline;
}

.member-post-date {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.member-post-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

@media (max-width: 768px) {
  .member-post-card {
    flex-direction: column;
  }

  .member-post-thumbnail {
    width: 100%;
    max-width: 100%;
  }
}
.sidebar {
  position: sticky;
  top: 120px; /* Adjust this number as needed */
  z-index: 10;
}