/* === Custom Overrides === */

/* Stop title truncation on all screens */
.feed-title {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

/* Optional: just in case flexbox causes cut-off */
.feed-title {
  min-width: 0 !important;
}

/* Simple author byline */
.author-byline {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* slightly wider gap */
}

.author-avatar {
  width: 63px;   /* 50% bigger */
  height: 63px;  /* 50% bigger */
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: inherit;  /* uses same size as the heading */
  color: var(--text);
}


/* Safety: if any leftover author links remain, neutralize them */
.single-footer a[href*="/author/"] {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

.feed-right {
  display: flex;
  align-items: center;
  gap: 0.4rem; /* tighten or loosen to taste */
}

.site-footer {
  padding-bottom: 2rem; /* optional */
  text-align: center;
  opacity: 0.8;
}