.pdf-viewer-wrap {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #d0d8e8;
	margin: 24px auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
	width: 75%;
}

.pdf-viewer-frame {
	width: 100%;
	display: block;
	border: none;
}

.pdf-viewer-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	background: #f0f4fb;
	border-top: 1px solid #d0d8e8;
}

.pdf-viewer-title {
	font-weight: 600;
	color: #333;
	font-size: .95rem;
}

.pdf-viewer-btn {
	background: var(--color-main-2, #4b559d);
	color: #fff;
	padding: 8px 22px;
	border-radius: 20px;
	text-decoration: none;
	font-size: .9rem;
	font-weight: 600;
	transition: opacity .2s;
}

.pdf-viewer-btn:hover {
	opacity: .85;
	color: #fff;
}

@media (max-width: 600px) {
	.pdf-viewer-frame  { height: 400px !important; }
	.pdf-viewer-footer { flex-direction: column; gap: 10px; align-items: flex-start; }
}
