body {
  padding-top: 66px; /* Adjust as needed (56px default, 70px for safety) */
}

.three-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3;       /* number of lines you want */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.6em;            /* optional: controls vertical space */
}
.four-lines {
  display: -webkit-box;
  -webkit-line-clamp: 4;       /* number of lines you want */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.6em;            /* optional: controls vertical space */
}
.toggle-icon {
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-right: 0.5em;
  text-align: center;
}

a[aria-expanded="true"] .toggle-icon::before {
  content: "−";
}

a[aria-expanded="false"] .toggle-icon::before {
  content: "+";
}
.accordion-link {
	display: block;
	margin: inherit;
	padding: 0.75rem 1.25rem;
	text-decoration: none !important;
}
#accordion-creative-order .card-header,
#accordion-credentialing .card-header {
  padding: 0 !important;
}
.anchorBorder {
	display: block;
	width: 100%;
	height: 66px;
}
* {
	box-sizing: border-box;
}
.certificate-page {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Georgia", serif;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}
.certificate-wrapper {
	width: 100vw;
	height: 100vh;
	padding: 2rem;
	border: 20px solid gold;
	background: #fff8e1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: auto;
	box-sizing: border-box;
}
.certificate-order {
	max-width: 1000px;
	width: 100%;
	max-height: 100%;
	overflow: auto;
	padding: 1rem;
	box-sizing: border-box;
}
.certificate-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	padding-top: 30px;
}
.arc-heading {
	position: relative;
	width: 100%;
	height: 160px;
	margin-bottom: -40px;
}
.arc-heading svg {
	width: 100%;
	height: 200%;
}
.arc-heading text {
	fill: #000;
	font-size: 60px;
	font-weight: bold;
	letter-spacing: 5px;
}

.certificate-page h1 {
  font-size: 1.5rem;
  margin-top: 0;
  color: #222;
}

.recipient {
	font-size: 2rem;
	font-weight: bold;
	margin: 1rem 0;
}
.subtext {
	font-size: 1.1rem;
	margin: 0.75rem 0;
}
.highlight {
	font-size: 1.4rem;
	font-weight: bold;
	color: #444;
}
.footer {
	margin-top: 3rem;
	font-size: 0.9rem;
	color: #666;
}

@media print {
.certificate-wrapper {
	border-width: 10mm;
	height: auto;
	page-break-after: always;
}
}