
.events-wrapper {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.events-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.events-title {
	margin: 0;
	font-family: Literata;
	font-weight: 700;
	font-size: 48px;
	line-height: 125%;
	color: #1b593e;
}

.events-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
	align-self: flex-end;
}

.events-buttons button {
	cursor: pointer;
	border: none;
	outline: none;
	border-radius: 4px;
	width: 40px;
	height: 40px;
	background-color: #52b788;
}

.events-buttons button.swiper-button-disabled {
	background-color: #d8f3dc;
}

.events-buttons button.swiper-button-disabled path {
	stroke: #9f9f9f;
}

.events-list {
	display: flex;
}

.events-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
	max-width: 400px;
}

.events-item:has(.events-item__content--short-item) {
	margin-right: 20px;
}

.events-item__title {
	margin: 0;
	font-family: Literata;
	font-weight: 500;
	font-size: 24px;
	line-height: 125%;
	color: #857040;
}

.events-item__text {
	margin: 0;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	color: #606060;
}

.events-item__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/*min-height: 396px;*/
}

.events-item__img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.swiper-slide.events-item .events-item__img {
	width: 400px;
}

.events-item__content--short-item {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	gap: 20px;
}

.events-item__content--short-item .events-item__title {
	font-size: 18px;
}

.events-item__content time {
	font-family: Montserrat;
	font-weight: 400;
	font-size: 13px;
	line-height: 150%;
	color: #857040;
}

.events-item__btn-wrapper {
	flex-grow: 1;
	align-content: flex-end;
}

.events-item__btn {
	display: block;
	width: fit-content;
	padding: 10px 20px;
	background-color: #52b788;
	border-radius: 4px;
	border: none;
	outline: none;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	text-decoration: none;
	color: #fff;
}

.read-all__wrapper {
	padding: 40px 0;
	display: flex;
	justify-content: center;
}

.read-all {
  text-decoration: none;
	padding: 12px 20px;
	border-radius: 4px;
	border: 1px solid #52B788;
	outline: none;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	color: #52B788;
}

@media (max-width: 1200px) {
	.events-item__img {
		height: auto;
	}
}

@media (max-width: 768px) {
	.events-list:not(.swiper-wrapper) {
		gap: 20px;
		flex-direction: column;
	}

	.events-item:has(.events-item__content--short-item) {
		max-width: none;
		margin-right: 0;
	}
}
