:root {
  --blue: #2148c9;
  --blue-dark: #0b2e91;
  --blue-deep: #071b5f;
  --ink: #13203a;
  --muted: #667085;
  --line: #dbe3f3;
  --paper: #f7f9ff;
  --white: #ffffff;
  --cyan: #73d6ff;
  --green: #23b38a;
  --amber: #f2b84b;
  --coral: #e9625f;
  --shadow: 0 22px 60px rgba(11, 46, 145, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(7, 27, 95, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: var(--white);
  border: 2px solid rgba(115, 214, 255, .8);
  font-size: 25px;
  font-weight: 900;
  transform: skew(-8deg);
}

.brand-logo {
  display: block;
  width: auto;
  height: 44px;
  max-width: 180px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 22px;
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, .76);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-nav a {
  padding: 8px 14px;
  color: rgba(255, 255, 255, .84);
  border: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) 48px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 27, 95, .98), rgba(33, 72, 201, .94) 54%, rgba(10, 44, 149, .98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 20px);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  right: -130px;
  top: 84px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .17);
  transform: rotate(18deg);
}

.hero::after {
  left: -8vw;
  bottom: -110px;
  width: 58vw;
  height: 210px;
  background: rgba(255, 255, 255, .1);
  transform: skewY(-9deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: clamp(46px, 6.6vw, 92px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, .24);
}

.hero-subtitle {
  margin: 22px 0 0;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .12);
}

.hero-phone span {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.hero-phone strong {
  font-size: 20px;
  font-weight: 900;
}

.hero-phone:hover {
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .18);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
}

.verify-panel {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: var(--shadow);
}

.verify-panel::before,
.verify-panel::after {
  position: absolute;
  width: 24px;
  height: 24px;
  content: "";
}

.verify-panel::before {
  top: 10px;
  left: 10px;
  border-top: 4px solid var(--blue);
  border-left: 4px solid var(--blue);
}

.verify-panel::after {
  right: 10px;
  bottom: 10px;
  border-right: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
}

.panel-title,
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.panel-title span,
.section-head span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.panel-title h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.verify-panel p {
  margin: 16px 0 22px;
  color: var(--muted);
}

.verify-form {
  display: grid;
  gap: 14px;
}

.verify-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.verify-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  outline: 0;
}

.verify-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(33, 72, 201, .12);
}

.verify-form button,
.print-button {
  min-height: 50px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.verify-form button:hover,
.print-button:hover {
  background: var(--blue-dark);
}

.query-message {
  min-height: 28px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.query-message.success {
  color: var(--green);
  font-weight: 800;
}

.query-message.error {
  color: var(--coral);
  font-weight: 800;
}

.certificate-image-result {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.certificate-image-result[hidden] {
  display: none;
}

.certificate-image-result img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
}

.certificate-layer-open {
  overflow: hidden;
}

.certificate-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.certificate-layer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 43, .72);
}

.certificate-layer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(94vw, 920px);
  max-height: 92vh;
  padding: 14px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.certificate-layer-close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.certificate-layer-image {
  overflow: auto;
  max-height: calc(92vh - 86px);
  background: #f3f6fb;
}

.certificate-layer-image img {
  display: block;
  width: 100%;
  height: auto;
}

.certificate-layer-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.certificate-layer-actions .print-button {
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  text-align: center;
}

.certificate-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 760px;
  margin: 42px auto 0;
}

.certificate {
  position: relative;
  overflow: hidden;
  width: min(100%, 720px);
  min-height: 520px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, .13), transparent 38%),
    var(--blue);
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.certificate::before {
  position: absolute;
  inset: 45% -10% auto -10%;
  height: 122px;
  content: "";
  background: rgba(255, 255, 255, .92);
  transform: skewY(-9deg);
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
}

.corner-tl {
  top: 16px;
  left: 16px;
  border-top: 5px solid var(--white);
  border-left: 5px solid var(--white);
}

.corner-br {
  right: 16px;
  bottom: 16px;
  border-right: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
}

.cert-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  text-align: center;
}

.cert-head span {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(52px, 10vw, 104px);
  line-height: .9;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, .28);
}

.cert-head strong {
  font-size: clamp(20px, 4vw, 38px);
  font-style: italic;
}

.cert-ribbon {
  position: relative;
  z-index: 1;
  margin: 64px -24px 30px;
  padding: 22px 28px;
  color: #101828;
  background: rgba(255, 255, 255, .92);
  transform: skewY(-9deg);
}

.cert-ribbon span,
.cert-ribbon b {
  display: block;
  transform: skewY(9deg);
}

.cert-ribbon span {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
}

.cert-ribbon b {
  margin-top: 8px;
  font-size: clamp(16px, 2.6vw, 22px);
}

.cert-body {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cert-body p {
  margin: 8px 0;
}

.cert-body h3 {
  margin: 4px 0 6px;
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.15;
}

.cert-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  text-align: left;
}

.cert-body dl div {
  padding: 10px 12px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .2);
}

.cert-body dt {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.cert-body dd {
  margin: 2px 0 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.cert-seals {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.cert-seals span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 3px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.cert-footer {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  text-align: center;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.consult {
  padding-bottom: clamp(30px, 4vw, 52px);
}

.course-bridge {
  padding: 0 clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 50%, #eef3ff 50%, #eef3ff 100%);
}

.course-bridge-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  min-height: 148px;
  margin: 0 auto;
  padding: 28px 32px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 27, 95, .98), rgba(33, 72, 201, .94) 62%, rgba(35, 179, 138, .9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 18px);
  box-shadow: 0 24px 56px rgba(11, 46, 145, .16);
}

.course-bridge-inner::before,
.course-bridge-inner::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.course-bridge-inner::before {
  right: 34px;
  top: -54px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .24);
  transform: rotate(18deg);
}

.course-bridge-inner::after {
  right: 230px;
  bottom: 0;
  width: 96px;
  height: 6px;
  background: var(--amber);
}

.course-bridge span,
.course-bridge h2,
.course-bridge ul {
  position: relative;
  z-index: 1;
}

.course-bridge span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.course-bridge h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
}

.course-bridge ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-bridge li {
  padding: 9px 13px;
  color: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .1);
  font-weight: 800;
  white-space: nowrap;
}

.course-bridge + .section {
  padding-top: clamp(40px, 5vw, 68px);
}

.section-head {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-head p {
  margin: 0 0 0 auto;
  color: var(--muted);
}

.consult-grid,
.course-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.consult-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.consult-card,
.course-card,
.page-article {
  display: block;
  padding: 24px;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(19, 32, 58, .06);
}

.consult-card {
  min-height: 220px;
  border-top-width: 5px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.consult-card:hover,
.course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(19, 32, 58, .1);
}

.consult-card-about {
  border-top-color: var(--blue);
}

.consult-card-course {
  border-top-color: var(--green);
}

.consult-card .badge,
.course-card .badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--blue);
  background: #eef3ff;
  font-size: 13px;
  font-weight: 900;
}

.consult-card h3,
.course-card h3,
.page-article h1 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.consult-card p,
.course-card p,
.page-article p {
  margin: 0;
  color: var(--muted);
}

.consult-card .card-meta {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.page-hero {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) 28px;
  color: var(--white);
  background: linear-gradient(125deg, var(--blue-deep), var(--blue));
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .8);
}

.page-body {
  padding: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.page-body-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-article {
  color: var(--ink);
}

.page-article .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.page-article .richtext {
  font-size: 16px;
  line-height: 1.9;
}

.page-article .richtext p {
  margin: 0 0 14px;
  color: var(--ink);
}

.page-article .richtext img {
  max-width: 100%;
  height: auto;
}

.course-card {
  border-top: 5px solid var(--blue);
}

.course-card:nth-child(2n) {
  border-top-color: var(--green);
}

.course-card .course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.course-card .course-top strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.course-card .course-top span {
  color: var(--muted);
  font-size: 13px;
}

.course-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-grid .course-card:nth-child(3n) {
  border-top-color: var(--amber);
}

.course-grid .course-card:nth-child(4n) {
  border-top-color: var(--coral);
}

.page-foot-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.page-foot-nav a {
  color: var(--blue);
  font-weight: 900;
}

.intro-grid,
.about-block,
.courses,
.news-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.intro-grid,
.courses,
.news-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article,
.courses article,
.news-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(19, 32, 58, .06);
}

.news-grid article,
.business-grid .course-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.news-grid article:hover,
.business-grid .course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(19, 32, 58, .1);
}

.news-grid article a {
  display: block;
}

.business-grid {
  align-items: stretch;
}

.intro-grid h3,
.courses h3,
.news-grid h3,
.about-block h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.intro-grid p,
.courses p,
.news-grid p,
.about-block p {
  margin: 0;
  color: var(--muted);
}

.about-block {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 24px;
  margin-top: 24px;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(125deg, var(--blue-deep), var(--blue));
}

.about-block p {
  color: rgba(255, 255, 255, .78);
}

.about-block p + p {
  margin-top: 14px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
}

.courses {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.courses article {
  border-top: 5px solid var(--blue);
}

.courses article:nth-child(2) {
  border-top-color: var(--green);
}

.courses article:nth-child(3) {
  border-top-color: var(--amber);
}

.courses article:nth-child(4) {
  border-top-color: var(--coral);
}

.courses span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  color: var(--blue);
  background: #eef3ff;
  font-weight: 900;
}

.news {
  background: var(--white);
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid time {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, .78);
  background: #08133d;
}

.site-footer strong {
  color: var(--white);
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero-inner,
  .about-block {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 11vw, 76px);
  }

  .intro-grid,
  .courses,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .consult-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head p {
    margin-left: 0;
  }

  .course-bridge-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-bridge ul {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand small {
    font-size: 11px;
  }

  .site-nav a {
    padding: 7px 10px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-phone {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }

  .course-bridge-inner {
    min-height: 0;
    padding: 24px 20px;
  }

  .course-bridge h2 {
    font-size: 24px;
  }

  .intro-grid,
  .courses,
  .news-grid,
  .cert-body dl {
    grid-template-columns: 1fr;
  }

  .consult-card,
  .course-card,
  .page-article {
    padding: 20px;
  }

  .page-article h1 {
    font-size: 34px;
  }

  .certificate {
    min-height: 0;
  }

  .cert-ribbon {
    margin-top: 36px;
  }

  .cert-seals span {
    width: 68px;
    height: 68px;
    font-size: 13px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  #certificateResult,
  #certificateResult *,
  #certificateLayer,
  #certificateLayer * {
    visibility: visible;
  }

  #certificateResult {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    background: var(--white);
  }

  #certificateResult img {
    max-width: 100%;
    max-height: 100vh;
    border: 0;
  }

  .certificate-layer {
    position: static;
    display: block;
    padding: 0;
  }

  .certificate-layer-backdrop,
  .certificate-layer-close,
  .certificate-layer-actions {
    display: none;
  }

  .certificate-layer-panel,
  .certificate-layer-image {
    display: block;
    width: 100%;
    max-height: none;
    padding: 0;
    box-shadow: none;
  }

  .certificate-layer-image img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
  }

  .certificate {
    width: 100%;
    min-height: 96vh;
    box-shadow: none;
  }

  .print-button {
    display: none;
  }
}
