.org-card{
  text-decoration:none;
  color:inherit;
  display:flex;
  width: 100%;
height: 100%;
}
.org-card__inner{
  border: 1px solid var(--cf-line);
  border-radius: var(--cf-radius);
  background: var(--cf-surface);
  box-shadow: var(--cf-shadow-soft);
  padding: 14px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  width: 100%;
}
.org-card:hover .org-card__inner{
  transform: translateY(-1px);
  box-shadow: var(--cf-shadow);
  border-color: rgba(122,23,23,.18);
}
.org-card__top{
  display:flex;
  gap:12px;
  align-items:center;
}
.org-card__avatar img{
  width:54px; height:54px;
  border-radius:14px;
  object-fit:cover;
}
.org-card__placeholder{
  width:54px; height:54px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(27,27,27,.06);
  color: rgba(27,27,27,.35);
}
.org-card__name{
  font-weight:900;
  line-height:1.1;
}
.org-card__bio{
  margin-top:10px;
  font-size: 13px;
}

/* Organizer hero */
.org-hero{
  border: 1px solid var(--cf-line);
  border-radius: var(--cf-radius);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--cf-shadow);
  padding: 16px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.org-hero__left{
  display:flex;
  gap:14px;
  align-items:flex-start;
  flex: 1;
  min-width: 280px;
}
.org-hero__logo img{
  width:86px; height:86px;
  border-radius: 18px;
  object-fit: cover;
}
.org-hero__placeholder{
  width:86px; height:86px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(27,27,27,.06);
  color: rgba(27,27,27,.35);
  font-size: 26px;
}
.org-hero__right{
  min-width: 280px;
  width: 100%;
}

/* Event row */
.evt-row{
  display:flex;
  gap:14px;
  padding: 12px;
  border: 1px solid var(--cf-line);
  border-radius: var(--cf-radius);
  background: var(--cf-surface);
  box-shadow: var(--cf-shadow-soft);
  text-decoration:none;
  color:inherit;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.evt-row:hover{
  transform: translateY(-1px);
  box-shadow: var(--cf-shadow);
  border-color: rgba(122,23,23,.18);
}
.evt-row__media img{
  width: 140px;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  display:block;
}
.evt-row__placeholder{
  width: 140px;
  height: 92px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(27,27,27,.06);
  color: rgba(27,27,27,.35);
}
.evt-row__body{ flex:1; min-width:0; }
.evt-row__title{
  font-weight:900;
  letter-spacing:-0.3px;
  margin-top:4px;
}
