@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cg-bg: #f8fafc;
  --cg-bg-elevated: rgba(255, 255, 255, 0.88);
  --cg-bg-sidebar: rgba(255, 255, 255, 0.82);
  --cg-text: #0f172a;
  --cg-text-soft: #475569;
  --cg-text-muted: #64748b;
  --cg-border: rgba(148, 163, 184, 0.25);
  --cg-border-strong: rgba(100, 116, 139, 0.35);
  --cg-primary: #12b8f6;
  --cg-primary-strong: #0b88c3;
  --cg-primary-soft: rgba(18, 184, 246, 0.12);
  --cg-accent: #1d4ed8;
  --cg-accent-soft: rgba(29, 78, 216, 0.08);
  --cg-brand-dark: #0d1b3d;
  --cg-brand-darker: #09142d;
  --cg-brand-gold: #f2c94c;
  --cg-brand-gold-strong: #d9a916;
  --cg-warning: #fff7ed;
  --cg-warning-strong: #b45309;
  --cg-note: #eff6ff;
  --cg-note-strong: #1d4ed8;
  --cg-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  --cg-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --cg-radius-lg: 20px;
  --cg-radius-md: 14px;
  --cg-radius-sm: 10px;
  --cg-code-bg: #0f172a;
}

html,
body {
  background:
    radial-gradient(circle at top left, rgba(22, 194, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f8fafc 100%);
  color: var(--cg-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  letter-spacing: -0.01em;
}

.app-nav,
.sidebar,
.markdown-section,
.cover-main {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.88)),
    linear-gradient(180deg, rgba(13, 27, 61, 0.02), rgba(18, 184, 246, 0.02));
  backdrop-filter: blur(18px);
  border-right: 1px solid var(--cg-border);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25), 8px 0 30px rgba(15, 23, 42, 0.04);
  padding-top: 20px;
  scrollbar-color: rgba(100, 116, 139, 0.35) transparent;
  scrollbar-width: thin;
}

.sidebar::-webkit-scrollbar {
  width: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.45);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: content-box;
}

.sidebar-toggle {
  background: #0f172a;
}

.app-name {
  margin: 0 14px 16px;
  padding: 0;
}

.app-name-link,
.sidebar .app-name-link {
  color: var(--cg-text);
  display: block;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.cg-brand {
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(13, 27, 61, 0.98), rgba(15, 34, 84, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(13, 27, 61, 0.18);
  display: grid;
  gap: 12px;
  grid-template-columns: 52px minmax(0, 1fr);
  padding: 14px 14px 13px;
  position: relative;
}

.cg-brand::after {
  background: linear-gradient(90deg, rgba(242, 201, 76, 0), rgba(242, 201, 76, 0.9), rgba(18, 184, 246, 0));
  border-radius: 999px;
  bottom: -1px;
  content: '';
  height: 2px;
  left: 16px;
  position: absolute;
  right: 16px;
}

.cg-brand__logo {
  display: block;
  filter: drop-shadow(0 10px 20px rgba(8, 20, 45, 0.35));
  width: 52px;
}

.cg-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cg-brand__name {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  white-space: nowrap;
}

.cg-brand__tag {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.search {
  margin: 0 14px 18px;
  padding: 14px 0 0;
  border-top: 0;
  position: sticky;
  top: 0;
  z-index: 4;
}

.search::before {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0.76), rgba(248, 251, 255, 0));
  content: '';
  inset: -14px -6px -6px;
  position: absolute;
  z-index: -1;
}

.search input {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--cg-border);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--cg-text);
  font-size: 14px;
  padding: 12px 16px 12px 40px;
  width: 100%;
}

.search input:focus {
  border-color: rgba(22, 194, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(22, 194, 255, 0.12);
}

.search .clear-button {
  right: 14px;
}

.sidebar-nav {
  padding: 0 14px 36px;
}

.sidebar-nav p,
.sidebar-nav li>a {
  color: var(--cg-text-soft);
  font-size: 14px;
}

.sidebar-nav > ul > li {
  margin-bottom: 10px;
}

.sidebar-nav > ul > li > a {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  display: flex;
  font-weight: 700;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
}

.sidebar-nav ul ul {
  border-left: 1px solid rgba(148, 163, 184, 0.2);
  margin-left: 12px;
  padding-left: 10px;
}

.sidebar-nav ul ul li > a {
  font-size: 13px;
}

.sidebar-nav a[href]::before {
  align-items: center;
  border-radius: 999px;
  color: var(--cg-brand-dark);
  display: inline-flex;
  flex: 0 0 1.7rem;
  font-size: 0.92rem;
  height: 1.7rem;
  justify-content: center;
  width: 1.7rem;
}

.sidebar-nav a[href$='README.md']::before {
  background: rgba(242, 201, 76, 0.24);
  content: '⌂';
}

.sidebar-nav a[href*='000-empezar-aqui/']::before,
.sidebar-nav a[href*='inicio/']::before {
  background: rgba(18, 184, 246, 0.18);
  content: '◎';
}

.sidebar-nav a[href*='300-gestion-comercial/']::before,
.sidebar-nav a[href*='400-gestionar-solicitudes/']::before,
.sidebar-nav a[href*='500-operar-creditos/']::before,
.sidebar-nav a[href*='600-operar-depositos/']::before,
.sidebar-nav a[href*='700-movimientos-y-contabilidad/']::before,
.sidebar-nav a[href*='800-hacer-seguimiento/']::before,
.sidebar-nav a[href*='900-resolver-problemas/']::before,
.sidebar-nav a[href*='operacion/']::before {
  background: rgba(29, 78, 216, 0.14);
  content: '⚙';
}

.sidebar-nav a[href*='creditos/']::before {
  background: rgba(18, 184, 246, 0.18);
  content: '◔';
}

.sidebar-nav a[href*='depositos/']::before {
  background: rgba(242, 201, 76, 0.2);
  content: '◈';
}

.sidebar-nav a[href*='pagos/']::before {
  background: rgba(34, 197, 94, 0.16);
  content: '↳';
}

.sidebar-nav a[href*='leads/']::before {
  background: rgba(249, 115, 22, 0.16);
  content: '◉';
}

.sidebar-nav a[href*='grants/']::before {
  background: rgba(168, 85, 247, 0.16);
  content: '✦';
}

.sidebar-nav a[href*='transacciones/']::before {
  background: rgba(14, 165, 233, 0.16);
  content: '⇄';
}

.sidebar-nav a[href*='100-configurar-la-entidad/']::before,
.sidebar-nav a[href*='200-crear-la-base-de-trabajo/']::before,
.sidebar-nav a[href*='1000-glosario/']::before,
.sidebar-nav a[href*='configuracion/']::before {
  background: rgba(13, 27, 61, 0.08);
  content: '◧';
}

.sidebar-nav a[href*='productos/']::before {
  background: rgba(29, 78, 216, 0.14);
  content: '◫';
}

.sidebar-nav a[href*='contactos/']::before {
  background: rgba(18, 184, 246, 0.14);
  content: '◌';
}

.sidebar-nav a[href*='cuestionarios/']::before {
  background: rgba(139, 92, 246, 0.14);
  content: '☰';
}

.sidebar-nav a[href*='plataforma/']::before {
  background: rgba(242, 201, 76, 0.18);
  content: '✧';
}

.sidebar-nav a[href*='seguridad_acceso']::before {
  background: rgba(14, 165, 233, 0.2);
  content: '⛨';
}

.sidebar-nav a[href*='reportes_analitica']::before {
  background: rgba(34, 197, 94, 0.18);
  content: '◫';
}

.sidebar-nav a[href*='onboarding_publico']::before {
  background: rgba(249, 115, 22, 0.16);
  content: '↗';
}

.sidebar-nav a[href*='importaciones_datos']::before {
  background: rgba(29, 78, 216, 0.14);
  content: '⇪';
}

.sidebar-nav a[href*='medios_archivos']::before {
  background: rgba(148, 163, 184, 0.2);
  content: '▣';
}

.sidebar-nav a[href*='tenants']::before,
.sidebar-nav a[href*='soporte_operativo']::before,
.sidebar-nav a[href*='mejoras/']::before {
  background: rgba(242, 201, 76, 0.18);
}

.sidebar-nav a[href*='tenants']::before {
  content: '◍';
}

.sidebar-nav a[href*='soporte_operativo']::before {
  content: '☄';
}

.sidebar-nav a[href*='mejoras/']::before {
  content: '✺';
}

.sidebar ul li.active>a {
  background: linear-gradient(90deg, var(--cg-primary-soft), rgba(255, 255, 255, 0));
  border-radius: 10px;
  color: var(--cg-primary-strong);
  font-weight: 700;
  position: relative;
}

.sidebar ul li.active>a::after {
  background: linear-gradient(180deg, var(--cg-primary), var(--cg-accent));
  border-radius: 999px;
  content: '';
  height: calc(100% - 8px);
  left: -4px;
  position: absolute;
  top: 4px;
  width: 3px;
}

.sidebar ul li>a {
  align-items: center;
  border-radius: 10px;
  display: flex;
  gap: 0.6rem;
  margin: 2px 0;
  padding: 6px 10px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.sidebar ul li>a:hover {
  background: rgba(255, 255, 255, 0.75);
  color: var(--cg-text);
  text-decoration: none;
  transform: translateX(2px);
}

.sidebar .sidebar-nav strong {
  color: var(--cg-text);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0.95rem 0 0.35rem;
  text-transform: uppercase;
}

.content {
  padding-top: 28px;
}

.markdown-section {
  background: var(--cg-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: var(--cg-shadow);
  margin: 0 auto 48px;
  max-width: 980px;
  padding: 48px 56px 56px;
}

.markdown-section>*:first-child {
  margin-top: 0 !important;
}

.markdown-section h1,
.markdown-section h2,
.markdown-section h3,
.markdown-section h4 {
  color: var(--cg-text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.markdown-section h1 {
  font-size: 2.45rem;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.markdown-section h2 {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  margin-top: 2.6rem;
  padding-top: 1.5rem;
}

.markdown-section h3 {
  font-size: 1.2rem;
  margin-top: 1.85rem;
}

.markdown-section p,
.markdown-section li,
.markdown-section blockquote,
.markdown-section td,
.markdown-section th {
  color: var(--cg-text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.markdown-section strong {
  color: var(--cg-text);
}

.markdown-section a {
  color: var(--cg-primary-strong);
  font-weight: 600;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.markdown-section a:hover {
  color: #0284c7;
}

.markdown-section h1 + blockquote {
  align-items: center;
  background: #103b73;
  border: 1px solid rgba(13, 27, 61, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(11, 42, 87, 0.28);
  color: #0b1324;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.5rem;
  letter-spacing: 0.04em;
  margin: 0.25rem 0 1.4rem;
  padding: 0.6rem 0.75rem 0.6rem 1rem;
  text-transform: uppercase;
}

.markdown-section h1 + blockquote p {
  color: #0b1324;
  text-shadow: none;
  margin: 0;
}

.markdown-section h1 + blockquote strong {
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.98), rgba(186, 230, 253, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--cg-brand-dark);
  display: inline-block;
  font-weight: 800;
  margin-left: 0.35rem;
  padding: 0.18rem 0.58rem;
}

.markdown-section h1 + blockquote code {
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
}

.markdown-section blockquote {
  background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 0 14px 14px 0;
  margin: 1.2rem 0;
  padding: 14px 18px;
}

.markdown-section blockquote:has(p > strong:first-child) {
  background: linear-gradient(180deg, var(--cg-note) 0%, #ffffff 100%);
  border-left-color: var(--cg-note-strong);
  border-radius: 14px;
  box-shadow: var(--cg-shadow-soft);
}

.markdown-section blockquote:has(p > strong:first-child) strong:first-child {
  color: var(--cg-note-strong);
}

.markdown-section blockquote code {
  background: rgba(15, 23, 42, 0.08);
}

.markdown-section code,
.markdown-section pre,
.markdown-section output:after {
  font-family: 'SFMono-Regular', ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
}

.markdown-section code {
  background: rgba(15, 23, 42, 0.06);
  border-radius: 8px;
  color: #0f172a;
  font-size: 0.92em;
  padding: 0.2em 0.45em;
}

.markdown-section pre {
  background: var(--cg-code-bg) !important;
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
  padding: 20px 22px;
}

.markdown-section pre>code {
  background: transparent;
  color: #e2e8f0;
  padding: 0;
}

.markdown-section table {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  border-collapse: separate;
  border-spacing: 0;
  display: table;
  margin: 1.6rem 0;
  overflow: hidden;
  box-shadow: var(--cg-shadow-soft);
  width: 100%;
}

.markdown-section table thead th {
  background: rgba(15, 23, 42, 0.92);
  border: 0;
  color: #f8fafc;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.markdown-section table td,
.markdown-section table th {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  padding: 14px 16px;
}

.markdown-section table tbody tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.9);
}

.markdown-section table tbody tr:hover {
  background: rgba(18, 184, 246, 0.06);
}

.markdown-section table td:first-child {
  color: var(--cg-text);
  font-weight: 700;
}

.markdown-section table td code {
  background: rgba(13, 27, 61, 0.06);
  border: 1px solid rgba(13, 27, 61, 0.08);
  border-radius: 999px;
  color: var(--cg-brand-dark);
  font-size: 0.86em;
  font-weight: 700;
  padding: 0.22em 0.62em;
}

.markdown-section hr {
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin: 2rem 0;
}

.markdown-section details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.96));
  border: 1px solid var(--cg-border);
  border-radius: 16px;
  box-shadow: var(--cg-shadow-soft);
  margin: 1.2rem 0;
  padding: 0.4rem 1rem 0.85rem;
}

.markdown-section details[open] {
  border-color: rgba(22, 194, 255, 0.25);
}

.markdown-section summary {
  color: var(--cg-text);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 0.75rem 0;
}

.markdown-section summary::-webkit-details-marker {
  display: none;
}

.markdown-section summary::before {
  color: var(--cg-primary-strong);
  content: '▸';
  display: inline-block;
  margin-right: 0.55rem;
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

.markdown-section details[open] summary::before {
  transform: rotate(90deg);
}

.cg-capture-placeholder {
  background: linear-gradient(135deg, rgba(13, 27, 61, 0.96), rgba(15, 34, 84, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(13, 27, 61, 0.18);
  color: #e2e8f0;
  margin: 1.4rem 0;
  overflow: hidden;
  padding: 18px 20px;
  position: relative;
}

.cg-capture-placeholder::before {
  background: linear-gradient(90deg, var(--cg-brand-gold), var(--cg-primary));
  content: '';
  height: 3px;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 0;
}

.cg-capture-placeholder__title {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.cg-capture-placeholder__meta {
  align-items: flex-start;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 88px minmax(0, 1fr);
  margin-top: 0.55rem;
}

.cg-capture-placeholder__label {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cg-capture-placeholder code {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e0f2fe !important;
  display: inline-block;
}

.pagination-item a,
.pagination-item span {
  border-radius: 14px !important;
}

.pagination-item-label,
.pagination-item-title {
  color: var(--cg-text);
}

.cover {
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.16), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.2), transparent 24%),
    radial-gradient(circle at 75% 80%, rgba(29, 78, 216, 0.22), transparent 24%),
    linear-gradient(135deg, #09142d 0%, #0d1b3d 34%, #0a5d89 100%) !important;
}

section.cover .cover-main {
  align-items: center;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 1120px;
  padding: 20px 24px 10px;
  text-align: center;
  width: 100%;
}

section.cover .cover-main>p:last-child img {
  display: none;
}

section.cover .cover-main img {
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.35));
}

section.cover h1,
section.cover h2,
section.cover p {
  color: #f8fafc !important;
}

section.cover h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
  margin-bottom: 0.35rem;
}

section.cover h2 {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-top: 0;
  opacity: 0.95;
}

section.cover .cover-main>p {
  font-size: 1rem;
}

section.cover .cover-main .cg-cover-intro {
  color: rgba(241, 245, 249, 0.88) !important;
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 1rem auto 1.6rem;
  max-width: 760px;
}

section.cover .cover-main .cg-cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 auto 2rem;
}

section.cover .btn-doc {
  background: linear-gradient(135deg, #22d3ee, #16c2ff) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px !important;
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.26) !important;
  color: #082f49 !important;
  display: inline-flex !important;
  font-weight: 800 !important;
  gap: 0.55rem;
  padding: 14px 24px !important;
}

section.cover .btn-doc:hover {
  background: linear-gradient(135deg, #fde047, #facc15) !important;
  color: #3f2d00 !important;
  transform: translateY(-3px);
}

section.cover .btn-doc--ghost {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f8fafc !important;
}

section.cover .btn-doc--ghost:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #f8fafc !important;
}

section.cover .cover-main>p[style*='letter-spacing'] {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 201, 76, 0.92));
  border: 1px solid rgba(242, 201, 76, 0.55);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(9, 20, 45, 0.18);
  color: var(--cg-brand-dark) !important;
  display: inline-block;
  font-weight: 800 !important;
  margin: 0.8rem auto 1.4rem;
  padding: 0.6rem 0.95rem;
  text-shadow: none;
}

section.cover .cg-cover-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  width: 100%;
}

section.cover .cg-cover-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(2, 6, 23, 0.14);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
  text-align: center;
}

section.cover .cg-cover-card__icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.26), rgba(22, 194, 255, 0.22));
  border-radius: 14px;
  display: inline-flex;
  font-size: 1.15rem;
  height: 2.2rem;
  justify-content: center;
  margin-bottom: 0.9rem;
  width: 2.2rem;
}

section.cover .cg-cover-card strong {
  color: #f8fafc;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

section.cover .cg-cover-card span:last-child {
  color: rgba(226, 232, 240, 0.8);
  display: block;
  font-size: 0.92rem;
  line-height: 1.6;
}

.docsify-copy-code-button {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  color: #e2e8f0 !important;
  margin: 10px !important;
}

.docsify-copy-code-button:hover {
  background: rgba(255, 255, 255, 0.18) !important;
}

@media screen and (max-width: 960px) {
  .markdown-section {
    border-radius: 22px;
    margin: 0 16px 32px;
    padding: 34px 24px 40px;
  }

  .content {
    padding-top: 16px;
  }

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

@media screen and (max-width: 768px) {
  .markdown-section h1 {
    font-size: 2rem;
  }

  .markdown-section h1 + blockquote {
    border-radius: 14px;
    display: block;
  }

  section.cover .btn-doc {
    justify-content: center;
    width: 100%;
  }

  section.cover .cg-cover-actions {
    flex-direction: column;
  }

  section.cover .cg-cover-grid {
    grid-template-columns: 1fr;
  }

  .cg-capture-placeholder__meta {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
