/* ============================================================================
   PILGRIM PROGRAM — Оформление блока "Сегодня"
   ============================================================================ */

.today-block {
  text-align: center;
  background: linear-gradient(180deg, #fffdf5, #fff7de);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--gold, #e0c187);
  box-shadow: 0 8px 28px rgba(124, 95, 31, 0.15);
  max-width: 880px;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

/* лёгкая текстура или орнамент сверху */
.today-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-bg-texture-2);
  opacity: 0.05;
  pointer-events: none;
}

.today-date {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cherry);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
}

.today-old-date {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-style: italic;
  opacity: 0.9;
}

.today-divider {
  width: 160px;
  height: 12px;
  margin: 0.8rem auto 1rem;
  background: url('/images/common/ornament/ornament-line-gold-vine.svg') center/contain no-repeat;
  opacity: 0.9;
}

/* ниже о праздниках  */
.today-category {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
 
.today-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-h3);
  margin: 0.3rem 0 1rem;
  line-height: 1.3;
}

.today-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6a3e1a;
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
}

.today-img {
  max-width: 720px;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  margin: 1.2rem auto;
  transition: transform .3s ease;
}
.today-img:hover {
  transform: scale(1.03);
}

.today-desc {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: justify;
  background: rgba(255,255,255,0.7);
  padding: 1rem 1.2rem;
  border-radius: 10px 10px 0 0;   /* ← верхние углы скруглённые, нижние квадратные */
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.today-desc:empty { display: none; }

.today-note {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: justify;
  font-style: italic;
  margin-top: 0rem;
  background: rgba(255,255,255,0.6);
  border-top: 1px solid var(--gold, #e0c187);
  border-bottom: 2px solid var(--gold, #e0c187);
  border-radius: 0 0 10px 10px;   /* ← верх квадратный, низ скруглённый */
  padding: 0.8rem 1rem;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
.today-note:empty { display: none; }



/* ========================== Мобильная адаптация — всегда внизу ========================== */
@media (max-width: 768px) {
  .today-block {
    padding: 1.2rem;
  }
  .today-date {
    font-size: 1.6rem;
  }
  .today-title {
    font-size: 1.1rem;
  }
  .today-img {
    max-width: 200px;
  }
}










