.static-page-layout {
  display: block;
  max-width: 1450px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 16px) 16px 16px;
}

.static-page-shell {
  width: 100%;
  display: grid;
  gap: 16px;
}

.static-page-template-compact .static-page-shell {
  max-width: 980px;
  margin: 0 auto;
}

.static-page-template-landing .static-page-cover img {
  height: clamp(320px, 40vw, 520px);
}

.static-page-template-landing .static-page-title {
  font-size: clamp(30px, 3.4vw, 48px);
}

.static-page-cover {
  margin: 0;
  border: 1px solid #2e4e75;
  border-radius: 16px;
  overflow: hidden;
  background: #0f2139;
  box-shadow: 0 14px 36px rgba(4, 10, 20, 0.3);
}

.static-page-cover img {
  width: 100%;
  height: clamp(240px, 32vw, 420px);
  object-fit: cover;
  display: block;
}

.static-page-card {
  border: 1px solid #2e4e75;
  background: linear-gradient(180deg, #132846 0%, #10243f 100%);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(3, 10, 20, 0.32);
  overflow: hidden;
}

.static-page-header {
  padding: 22px 24px 14px;
  border-bottom: 1px solid rgba(89, 126, 173, 0.35);
}

.static-page-title {
  margin: 0;
  color: #eef5ff;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.static-page-summary {
  margin: 10px 0 0;
  color: #a8c0e3;
  font-size: 16px;
  line-height: 1.55;
}

.static-page-content {
  padding: 22px 24px 30px;
  color: #dfeaff;
  line-height: 1.8;
  font-size: 17px;
  font-family: "Gilroy", "Segoe UI", Tahoma, Arial, sans-serif;
}

.static-page-content h2,
.static-page-content h3,
.static-page-content h4 {
  color: #f1f7ff;
  margin: 24px 0 10px;
}

.static-page-content p {
  margin: 0 0 14px;
}

.static-page-content a {
  color: #83b6ff;
  text-decoration: underline;
}

.static-page-content ul,
.static-page-content ol {
  margin: 0 0 14px 22px;
}

.static-page-content img,
.static-page-content iframe {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(93, 128, 170, 0.35);
}

.static-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  border: 1px solid rgba(93, 128, 170, 0.45);
}

.static-page-content th,
.static-page-content td {
  border: 1px solid rgba(93, 128, 170, 0.35);
  padding: 8px 10px;
}

.static-page-content hr {
  border: 0;
  border-top: 1px solid rgba(93, 128, 170, 0.5);
  margin: 16px 0;
}

.static-page-content pre {
  background: #0f2139;
  border: 1px solid rgba(93, 128, 170, 0.35);
  border-radius: 10px;
  padding: 12px;
  overflow: auto;
}

@media (max-width: 720px) {
  .static-page-layout {
    max-width: none;
    margin: 0;
    padding: calc(var(--header-h) + 10px) 10px 86px;
  }

  .static-page-cover img {
    height: 180px;
  }

  .static-page-header,
  .static-page-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .static-page-summary,
  .static-page-content {
    font-size: 15px;
  }
}
