/* Панель праздников */
.feasts-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
}

/* === Сайдбар === */
.feasts-panel {
  background: linear-gradient(180deg, #fffaf0, #f7edd4);
  border: 1px solid #e0c187;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  text-align: left;
  font-family: 'Marcellus', serif;
}

.panel-title {
  color: #633402;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: .6rem;
  text-align: center;
}

.panel-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: .5rem .7rem;
  margin-bottom: .4rem;
  background: #fdf6e5;
  border: 1px solid #e0c187;
  border-radius: 8px;
  font-size: .9rem;
  color: #5a4633;
  cursor: pointer;
  transition: background .25s, color .25s;
}

.panel-btn:hover {
  background: linear-gradient(180deg, #fcf6ea 0%, #f3e4c0 90%);
  color: #412d18;
}

.panel-btn.active {
  background: linear-gradient(180deg, #fcf6ea 0%, #f3e4c0 90%);
  border-color: #c5a04f;
  color: #412d18;
  font-weight: 600;
}

.panel-divider {
  border-top: 1px solid #e0c187;
  margin: 1rem 0;
}

/* Переключаем содержимое */
.tab-pane { display: none; }
.tab-pane.active { display: block; }


.panel-empty {
  text-align: center;
  color: #7b3f00;
  font-style: italic;
  margin: .5rem 0 1rem;
  line-height: 1.4;
}

.nearest-feast {
  display: block;
  color: #633402;
  font-style: normal;
  margin-top: .3rem;
}


/* Мобилка */
@media (max-width: 768px) {
  .feasts-layout { grid-template-columns: 1fr; }
  .feasts-panel { margin-bottom: 1rem; }
}
