
.smmd-archive-section { padding: 48px 0; }
.smmd-archive-header { margin-bottom: 24px; }
.smmd-archive-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.smmd-archive-header p {
  max-width: 720px;
  color: var(--sm-muted, #667085);
  margin: 0;
}
.smmd-year-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.smmd-year-control label { font-weight: 700; }
.smmd-year-select {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--sm-border, #e6e8ec);
  background: var(--sm-bg, #fff);
  color: var(--sm-text, #101828);
}
.smmd-month-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
  scrollbar-width: thin;
}
.smmd-month-tab {
  appearance: none;
  border: 1px solid var(--sm-border, #e6e8ec);
  background: var(--sm-bg, #fff);
  color: var(--sm-text, #101828);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}
.smmd-month-tab.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.smmd-month-panel { display: none; }
.smmd-month-panel.is-active { display: block; }
.smmd-month-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.smmd-month-heading h3 {
  margin: 0;
  font-size: 1.5rem;
}
.smmd-month-heading span {
  color: var(--sm-muted, #667085);
  font-size: 0.95rem;
}
.smmd-devotional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.smmd-devotional-card {
  border: 1px solid var(--sm-border, #e6e8ec);
  border-radius: 18px;
  background: var(--sm-bg, #fff);
  transition: transform .16s ease, box-shadow .16s ease;
}
.smmd-devotional-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.smmd-devotional-card a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}
.smmd-day {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sm-soft, #f8f8f6);
  font-weight: 800;
  flex: 0 0 auto;
}
.smmd-card-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.smmd-card-content strong { line-height: 1.25; }
.smmd-card-content small { color: var(--sm-muted, #667085); }
.smmd-empty {
  border: 1px dashed var(--sm-border, #e6e8ec);
  border-radius: 18px;
  padding: 24px;
  color: var(--sm-muted, #667085);
  background: var(--sm-soft, #f8f8f6);
}
@media (max-width: 760px) {
  .smmd-devotional-grid { grid-template-columns: 1fr; }
  .smmd-month-heading { flex-direction: column; gap: 4px; }
}
