	.container{
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.calendarLink{
  margin-left: 22px;
  margin-top: 6px;
  font-weight: 500;
}

.calendarLink a::before{
  content: "→ ";
}

.calendarLink a{
  font-weight: 600;
  text-decoration: none;
}

.calendarLink a:hover{
  text-decoration: underline;
}
.header-box{
  position:relative;
}

.lang-top{
  position:absolute;
  top:0;
  right:0;
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  font-size:14px;
  color:#444;
}
.holidayYear {
  margin-bottom: 2.5rem;
}

.holidayMonth {
  margin-bottom: 1rem;
}

.holidayMonthTitle {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.holidayList {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.holidayRow {
  display: grid;
  grid-template-columns: 42px 72px 1fr;
  gap: 0.75rem;
  align-items: center;
  background: #e9e9e9;
  padding: 0.85rem 0.9rem;
}

.holidayWeekday,
.holidayDate {
  white-space: nowrap;
}

.holidayName {
  font-weight: 500;
}

.holidayRow.isHighlightedHoliday {
  background: #fff3cd;
  font-weight: 700;
}

.year-break {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 34px 0 24px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.year-break::before,
.year-break::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.holidayListYear h3 {font-size: 2rem;margin-bottom: 10px;}
.holidayListYear a {color:initial;text-decoration:none}

.holidayPlainList {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 25px;
}

.holidayPlainListItem {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.holidayPlainListName {
  font-weight: 700;
  min-width: 250px;
  display: inline-block;
}

.holidayPlainListDate {
  display: inline-block;
}

@media (max-width: 700px) {

.holidayPlainListItem, .holidayPlainListName{
	display:block;
}

}

:target {
  animation: zoom 0.6s ease;
}

@keyframes zoom {
  0%   { transform: scale(1.2); }
  100% { transform: scale(1); }
}
