/* Feed cards + “official” structure */

.video-card,
.brand-card,
.church-card{
  width: 320px;
  min-width: 320px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  overflow:hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.video-card:hover,
.brand-card:hover,
.church-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

/* video */
.video-thumb{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.video-thumb iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
  background: #000;
}
.video-body{
  padding: 12px 12px 14px;
}
.video-title{
  font-weight: 1000;
  font-size: 14px;
  margin: 0 0 6px;
  line-height: 1.25;
}
.video-meta{
  display:flex;
  gap:8px;
  flex-wrap: wrap;
  color: rgba(0,0,0,.65);
  font-size: 12px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0,0,0,.02);
  font-weight: 900;
  font-size: 11px;
}

/* brand/church shared */
.card-media{
  width: 100%;
  height: 168px;
  background: rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}
.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.card-media .placeholder{
  color: rgba(0,0,0,.55);
  font-weight: 900;
  font-size: 12px;
  border: 1px dashed rgba(0,0,0,.20);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.70);
}
.card-body{
  padding: 12px 12px 14px;
}
.card-title{
  font-weight: 1000;
  font-size: 14px;
  margin: 0 0 6px;
}
.card-sub{
  margin: 0 0 10px;
  color: rgba(0,0,0,.65);
  font-size: 12px;
}
.card-row{
  display:flex;
  gap:8px;
  flex-wrap: wrap;
}

/* empty states look intentional */
.empty-row{
  width: 100%;
  border: 1px dashed rgba(0,0,0,.20);
  border-radius: 18px;
  padding: 18px;
  background: rgba(0,0,0,.02);
  color: rgba(0,0,0,.65);
  font-size: 13px;
}
.empty-row b{ color: rgba(0,0,0,.85); }

/* tighten section spacing */
.section{ margin: 18px 0; }
.section:first-child{ margin-top: 14px; }

/* make everything feel centered like YouTube */
.shell{ max-width: 1200px; }
