/* CMS / legal pages — prose inside info page shell */

.content .inside .cc-cms {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.cc-cms__prose {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
}

.cc-cms__prose > p:first-of-type {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.cc-cms__prose h1,
.cc-cms__prose h2,
.cc-cms__prose h3,
.cc-cms__prose h4 {
  margin: 2.25em 0 0.85em 0;
  font-family: var(--cc-font-display);
  color: #111;
  line-height: 1.25;
}

.cc-cms__prose h1:first-child,
.cc-cms__prose h2:first-child,
.cc-cms__prose h3:first-child,
.cc-cms__prose h4:first-child {
  margin-top: 0;
}

.cc-cms__prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.55em;
  border-bottom: 1px solid #ececec;
}

.cc-cms__prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.cc-cms__prose h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.cc-cms__prose p {
  margin: 0 0 1.1em 0;
}

.cc-cms__prose p:last-child {
  margin-bottom: 0;
}

.cc-cms__prose ul {
  margin: 0 0 1.25em 0;
  padding: 0;
  list-style: none;
}

.cc-cms__prose ul li {
  position: relative;
  margin: 0 0 0.6em 0;
  padding-left: 1.35em;
  line-height: 1.75;
}

.cc-cms__prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8b8b8;
}

.cc-cms__prose ul ul {
  margin: 0.5em 0 0.25em 0;
}

.cc-cms__prose ol {
  margin: 0 0 1.25em 0;
  padding-left: 1.6em;
}

.cc-cms__prose ol li {
  margin: 0 0 0.6em 0;
  padding-left: 0.25em;
  line-height: 1.75;
}

.cc-cms__prose ol li::marker {
  font-weight: 700;
  color: #666;
}

.cc-cms__prose a {
  color: #111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(17, 17, 17, 0.35);
}

.cc-cms__prose a:hover {
  color: #333;
  text-decoration-color: rgba(17, 17, 17, 0.65);
}

.cc-cms__prose strong,
.cc-cms__prose b {
  color: #111;
  font-weight: 600;
}

.cc-cms__prose em,
.cc-cms__prose i {
  font-style: italic;
}

.cc-cms__prose blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 3px solid #d5d5d5;
  border-radius: 0 8px 8px 0;
  background: #fafafa;
  color: #555;
}

.cc-cms__prose blockquote p:last-child {
  margin-bottom: 0;
}

.cc-cms__prose hr {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid #ececec;
}

.cc-cms__prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.25em 0;
  border-radius: 8px;
}

.cc-cms__prose table {
  width: 100%;
  margin: 1.5em 0;
  border-collapse: collapse;
  font-size: 14px;
}

.cc-cms__prose th,
.cc-cms__prose td {
  padding: 11px 14px;
  border: 1px solid #e8e8e8;
  text-align: left;
  vertical-align: top;
}

.cc-cms__prose th {
  background: #f7f7f7;
  font-weight: 600;
  color: #111;
}

.cc-cms__prose tr:nth-child(even) td {
  background: #fcfcfc;
}

.cc-cms__alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
}

.cc-cms__alert--err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.cc-cms--loading .cc-infoPage__hero--sk {
  min-height: clamp(180px, 22vw, 240px);
  background: linear-gradient(110deg, #eceae6 8%, #f7f6f4 18%, #eceae6 33%);
  background-size: 200% 100%;
  animation: ccCmsShimmer 1.2s ease-in-out infinite;
}

.cc-cms--loading .cc-cms__bodySk {
  width: 100%;
  margin: 48px 0 0;
  display: grid;
  gap: 10px;
}

.cc-cms--loading .cc-cms__lineSk {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(110deg, #eceae6 8%, #f7f6f4 18%, #eceae6 33%);
  background-size: 200% 100%;
  animation: ccCmsShimmer 1.2s ease-in-out infinite;
}

.cc-cms--loading .cc-cms__lineSk:nth-child(1) { width: 92% }
.cc-cms--loading .cc-cms__lineSk:nth-child(2) { width: 88% }
.cc-cms--loading .cc-cms__lineSk:nth-child(3) { width: 76% }
.cc-cms--loading .cc-cms__lineSk:nth-child(4) { width: 84% }

@keyframes ccCmsShimmer {
  to { background-position-x: -200% }
}
