.s-posts .posts_list.is-hidden {
	display: none;
}

/* Interactive calendar on homepage */
.s-calendar .calendar_wrap .left .bottom img {
	display: none;
}

.event-calendar .cal-table {
	width: 100%;
}

.event-calendar .cal-weekdays,
.event-calendar .cal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
}

.event-calendar .cal-weekday {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.45);
	padding-bottom: 6px;
}

.event-calendar .cal-day {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 1px solid transparent;
	border-radius: 10px;
	background: transparent;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	cursor: default;
	padding: 0;
}

.event-calendar .cal-day--empty {
	border: none;
	min-height: 0;
}

.event-calendar .cal-day--active {
	border-color: #dcac98;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.event-calendar .cal-day--active:hover,
.event-calendar .cal-day--selected {
	background: #dcac98;
	color: #fff;
}

.event-calendar .cal-day--today:not(.cal-day--selected) {
	box-shadow: inset 0 0 0 1px #000;
}

.cal-events-empty {
	padding: 24px 0;
	text-align: center;
}

/* Contact form feedback */
.s-form [data-form-message] {
	display: none;
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.4;
}

.s-form [data-form-message].is-error {
	background: #fde8e8;
	color: #8b1a1a;
}

.s-form [data-form-message]:not(.is-error) {
	background: #e8f5e9;
	color: #1b5e20;
}

.s-form .form_row--file input[type="file"] {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #000;
	border-radius: 10px;
	background: #fff;
}

.s-form.is-sending {
	opacity: 0.65;
	pointer-events: none;
}
