/* ============================================================
   DAILY ANNADHANAM — full log page
   ============================================================ */
.seva-section{ padding: 90px 0 100px; background: var(--ivory); }
.seva-intro{ max-width: 640px; margin: 0 auto 56px; text-align:center; }
.seva-intro h2{ font-size: clamp(28px,3.6vw,40px); margin-top:14px; }
.seva-intro p{ color: var(--ink-soft); margin-top:14px; font-size:15.5px; }

.seva-feed{ max-width: 820px; margin: 0 auto; display:flex; flex-direction:column; gap:28px; }

/* ================================================================
   SEVA ENTRY — copy this whole block to add a new day's service.
   Change: 1) the photo, 2) the date, 3) the old age home / place name,
   4) the dedication line, 5) the short caption.
   Newest entries go at the TOP of the feed.
   ================================================================ */
.seva-entry{
  display:grid; grid-template-columns: 200px 1fr; gap: 0;
  background: var(--white); border-radius: var(--radius-lg); overflow:hidden;
  box-shadow: var(--shadow-card); border: 1px solid rgba(43,36,28,0.06);
}
.seva-photo{ background-size:cover; background-position:center; min-height: 100%; }
.seva-photo.placeholder{
  background: var(--ivory-2); display:flex; align-items:center; justify-content:center;
  color: var(--ink-soft); font-family: var(--mono); font-size:11px; text-align:center; padding:14px;
  border-right: 2px dashed rgba(43,36,28,0.16);
}
.seva-body{ padding: 24px 26px; }
.seva-date{
  font-family: var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em;
  color: var(--gold-deep); display:block; margin-bottom:8px;
}
.seva-body h3{ font-size:19px; color: var(--navy); margin-bottom:10px; }
.seva-dedication{
  background: var(--ivory-2); border-left: 3px solid var(--gold);
  padding: 10px 14px; font-size:13.8px; color: var(--ink); margin-bottom:12px; border-radius: 0 8px 8px 0;
}
.seva-dedication strong{ color: var(--vermilion-deep); }
.seva-body p.seva-caption{ font-size:14px; color: var(--ink-soft); }

@media (max-width: 620px){
  .seva-entry{ grid-template-columns: 1fr; }
  .seva-photo{ aspect-ratio: 16/9; }
  .seva-photo.placeholder{ border-right:none; border-bottom: 2px dashed rgba(43,36,28,0.16); }
}

/* ============================================================
   HOMEPAGE CAROUSEL — auto-scrolling strip of recent entries,
   with < > arrows for a manual nudge
   ============================================================ */
.seva-ticker-section{ padding: 90px 0 100px; background: var(--ivory-2); overflow:hidden; }

.seva-card{
  width: 240px; flex-shrink:0;
  background: var(--white); border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-card); border: 1px solid rgba(43,36,28,0.06);
}
.seva-card .sc-photo{ aspect-ratio: 4/3; background-size:cover; background-position:center; }
.seva-card .sc-body{ padding: 14px 16px 18px; }
.seva-card .sc-date{
  font-family: var(--mono); font-size:10.5px; text-transform:uppercase; letter-spacing:.07em;
  color: var(--gold-deep); display:block; margin-bottom:5px;
}
.seva-card h4{ font-family: var(--display); font-weight:400; font-size:15px; color: var(--navy); line-height:1.3; }

.seva-carousel{ display:flex; align-items:center; gap:16px; margin-top:44px; }
.seva-track{
  display:flex; gap:20px; overflow-x:auto; padding-bottom:6px;
  scrollbar-width:none; -ms-overflow-style:none;
}
.seva-track::-webkit-scrollbar{ display:none; }
.seva-arrow{
  flex-shrink:0; width:46px; height:46px; border-radius:50%;
  background: var(--navy); color: var(--white);
  border:1px solid rgba(231,163,62,0.35);
  font-size:22px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, color .2s ease;
}
.seva-arrow:hover{ background: var(--gold); color: var(--navy); }
@media (max-width: 640px){
  .seva-arrow{ width:38px; height:38px; font-size:18px; }
}
