.pdc-calendar,
.pdc-calendar *,
.pdc-calendar *::before,
.pdc-calendar *::after {
	box-sizing: border-box;
}

.pdc-calendar {
	width: 100%;
	padding: 40px 20px 0;
	text-align: center;
	overflow-x: hidden;
}

.pdc-calendar h2.pdc-calendar__title {
	font-size: 28px !important;
	font-weight: 800 !important;
	line-height: 1.25 !important;
	margin: 0 0 0 !important;
	padding-bottom: 24px;
}

.pdc-calendar__band {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	left: 50%;
	transform: translateX(-50%);
	padding: 46px 24px 56px;
	overflow: hidden;
}

.pdc-calendar__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.pdc-calendar__col {
	min-width: 0;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.pdc-calendar__image-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 6px;
}

.pdc-calendar__image {
	max-width: 100%;
	height: auto;
	max-height: 210px;
	object-fit: contain;
}

.pdc-calendar h3.pdc-calendar__col-title {
	font-size: 21px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
	margin: 8px 0 22px !important;
}

.pdc-calendar__plates {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
}

.pdc-plate {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
	background: #ffffff;
	min-width: 0;
	max-width: 100%;
}

.pdc-plate__top {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 4px 6px;
}

.pdc-plate__top-text {
	color: #ffffff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.pdc-plate__flag,
.pdc-plate__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex: 0 0 auto;
	background: conic-gradient(#2e9e3f 0deg 140deg, #f2c116 140deg 220deg, #1450a3 220deg 360deg);
}

.pdc-plate__bottom {
	padding: 10px 8px;
	text-align: center;
}

.pdc-plate__text {
	font-weight: 800 !important;
	font-size: 13px !important;
	line-height: 1.3 !important;
	letter-spacing: 0.2px;
	white-space: normal;
	word-break: break-word;
}

@media (max-width: 900px) {
	.pdc-calendar__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 50px;
	}
	.pdc-calendar__plates {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: 420px;
	}
}

@media (max-width: 480px) {
	.pdc-calendar h2.pdc-calendar__title {
		font-size: 22px !important;
	}
	.pdc-calendar__plates {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.pdc-calendar__image {
		max-height: 150px;
	}
	.pdc-calendar__band {
		padding: 34px 16px 44px;
	}
}
