.psat-nota-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.psat-nota-modal.psat-nota-modal--open {
	display: flex;
}

.psat-nota-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.psat-nota-modal__content {
	position: relative;
	max-width: 720px;
	max-height: 80vh;
	margin: 0 16px;
	padding: 30px 28px 24px;
	color: #ffffff;
	border-radius: 16px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(10px);
	background-color: rgb(100 100 100 / 50%);
	overflow: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.psat-nota-modal__title {
	margin: 0 0 18px 0;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #FFE0B7;
	border-bottom: 1px solid rgba(255, 224, 183, 0.4);
	padding-bottom: 8px;
}

.psat-nota-modal__body {
	font-size: 14px;
	line-height: 1.6;
}

.psat-nota-modal__body p {
	margin: 0 0 10px 0;
}

.psat-nota-modal__close {
	position: absolute;
	top: 10px;
	right: 14px;
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 768px) {
	.psat-nota-modal__content {
		margin: 20px 12px;
		max-height: 85vh;
		padding: 24px 18px 18px;
	}
}

