/*
  BESD Sidebar Posts – Styles
  - Hintergrund rot, Schrift weiß
  - Datum links / Facebook-Icon rechts
  - Bild responsiv
  - Kein Titel (nur Datum/Icon + Bild + Text)
*/

.besd-sidebar-post{
  background: var(--besd-sidebar-post-bg, #d10000);
  color: #fff;
  border-radius: var(--besd-radius2);
  padding: 14px 14px 12px;
  overflow: hidden;
  display:block;
  text-decoration:none;
}

.besd-sidebar-post:focus-visible{
  outline: 3px solid rgba(255,255,255,.65);
  outline-offset: 3px;
}

.besd-sidebar-post *{ box-sizing: border-box; }

.besd-sidebar-post__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.besd-sidebar-post__date{
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  opacity: .95;
}

.besd-sidebar-post__fb-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.12);
}

.besd-sidebar-post:hover .besd-sidebar-post__fb-link{ background: rgba(255,255,255,.18); }

.besd-sidebar-post__fb{ display:block; }

.besd-sidebar-post__img-link{ display:block; }

.besd-sidebar-post__img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: var(--besd-radius2);
  margin: 0 0 10px 0;
}

.besd-sidebar-post__text{
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  opacity: .98;
}

.besd-sidebar-post__text p{ margin: 0 0 8px 0; }
.besd-sidebar-post__text p:last-child{ margin-bottom: 0; }
