html > body > main {
  width: 100%;
  margin-left: unset;
  margin-right: unset;
  box-sizing: border-box;
}
.ayuda-hub {
  --ah-bg: #121214;
  --ah-card-bg: #1e1e22;
  --ah-card-bg-hover: #26262b;
  --ah-card-border: #2c2c31;
  --ah-red: #d91e36;
  --ah-red-hover: #b81529;
  --ah-text-primary: #f5f5f7;
  --ah-text-muted: #9a9aa2;
  --ah-max-width: 1920px;

  display: block;
  box-sizing: border-box;
  max-width: var(--ah-max-width);
  margin: 0 auto;
  padding: 32px 40px 80px;
  background: var(--ah-bg);
  color: var(--ah-text-primary);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ayuda-hub *,
.ayuda-hub *::before,
.ayuda-hub *::after {
  box-sizing: border-box;
}

/* Breadcrumb */
.ayuda-hub .ah-breadcrumb {
  font-size: 1rem;
  color: var(--ah-text-muted);
  margin-bottom: 28px;
}

.ayuda-hub .ah-breadcrumb a {
  color: var(--ah-text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
}

.ayuda-hub .ah-breadcrumb a:hover {
  color: var(--ah-red);
}

.ayuda-hub .ah-breadcrumb .ah-sep {
  margin: 0 6px;
  color: var(--ah-card-border);
}

.ayuda-hub .ah-breadcrumb .ah-current {
  color: var(--ah-text-primary);
}

/* Page header */
.ayuda-hub .ah-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.ayuda-hub .ah-header h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: -0.5px;
}

.ayuda-hub .ah-lobby-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ah-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  border: 1px solid var(--ah-card-border);
  padding: 10px 18px;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.ayuda-hub .ah-lobby-link:hover {
  border-color: var(--ah-red);
  color: var(--ah-text-primary);
}

/* Cards grid (flex) */
.ayuda-hub .ah-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ayuda-hub .ah-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--ah-card-bg);
  border: 1px solid var(--ah-card-border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease;
}

.ayuda-hub .ah-card:hover {
  background: var(--ah-card-bg-hover);
  border-color: var(--ah-red);
  transform: translateY(-2px);
}

.ayuda-hub .ah-card-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ah-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ah-red);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.ayuda-hub .ah-card h2 {
  font-size: 1.125rem;
  margin: 0 0 8px;
  color: var(--ah-text-primary);
}

.ayuda-hub .ah-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ah-text-muted);
  margin: 0 0 24px;
  padding: 0;
  flex-grow: 1;
}

.ayuda-hub .ah-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ah-red);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  transition: background 0.15s ease;
}

.ayuda-hub .ah-card:hover .ah-card-btn,
.ayuda-hub .ah-card-btn:hover {
  background: var(--ah-red-hover);
}
.ayuda-hub .ah-card-btn .ah-arrow {
  transition: transform 0.15s ease;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.ayuda-hub .ah-card:hover .ah-arrow {
  transform: translateX(3px);
}
.ayuda-hub.ah-page {
  max-width: 920px;
}
/* Article content (páginas de detalle) */

.ayuda-hub .ah-article h1 {
  font-size: 2rem;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
  color: var(--ah-text-primary);
}

.ayuda-hub .ah-article h2 {
  font-size: 1.375rem;
  margin: 40px 0 16px;
  color: var(--ah-text-primary);
}
.ayuda-hub .ah-article h3{
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.ayuda-hub .ah-article p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ah-text-muted);
  margin: 0 0 16px;
  padding: 0;
}

.ayuda-hub .ah-article ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--ah-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.ayuda-hub .ah-article ul ul {
  margin-top: 6px;
  margin-bottom: 0;
  list-style: circle;
}

.ayuda-hub .ah-article li {
  margin-bottom: 6px;
}

.ayuda-hub .ah-article a {
  color: var(--ah-red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.ayuda-hub .ah-article a:hover {
  border-bottom-color: var(--ah-red);
}

.ayuda-hub .ah-article strong {
  color: var(--ah-text-primary);
  font-weight: 600;
}
.ayuda-hub .ah-article hr {
  border: none;
  border-top: 2px solid var(--ah-card-border);
  margin: 32px 0;
}

.ayuda-hub .ah-article .ah-icon-inline {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 4px;
}
.ayuda-hub .ah-article .ah-doc-date {
  text-align: right;
  color: var(--ah-text-muted);
  margin: 0 0 24px;
}

.ayuda-hub .ah-article ol {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--ah-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.ayuda-hub .ah-article ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}

.ayuda-hub .ah-article ol li {
  margin-bottom: 10px;
}


.ayuda-hub .ah-article table,
.ayuda-hub .ah-article th,
.ayuda-hub .ah-article td {
  all: revert;
  box-sizing: border-box;
}

.ayuda-hub .ah-article thead {
  display: table-header-group;
}

.ayuda-hub .ah-article tbody {
  display: table-row-group;
}

.ayuda-hub .ah-article tr {
  display: table-row;
}

.ayuda-hub .ah-article th,
.ayuda-hub .ah-article td {
  display: table-cell;
}

.ayuda-hub .ah-article table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 24px;
  font-size: 1rem;
  font-family: inherit;
}

.ayuda-hub .ah-article th {
  text-align: center;
  padding: 10px 16px;
  border: none;
  border-bottom: 2px solid var(--ah-text-primary);
  font-weight: 600;
  color: var(--ah-text-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ayuda-hub .ah-article td {
  text-align: center;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid var(--ah-card-border);
  color: var(--ah-text-muted);
  font-size: inherit;
}

.ayuda-hub .ah-article tr:last-child td {
  border-bottom: none;
}
.ayuda-hub .ah-article td::before {
  content: none;
  display: none;
}

/*MINI CARDS*/
.ayuda-hub .ah-mini-cards {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.ayuda-hub .ah-mini-card {
  flex: 1 1 50%;
  background: var(--ah-card-bg);
  border: 1px solid var(--ah-card-border);
  padding: 16px;
  text-align: center;
  color: var(--ah-text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.ayuda-hub .ah-mini-card:hover {
  background: var(--ah-card-bg-hover);
  border-color: var(--ah-red);
  transform: translateY(-2px);
}




/* Responsive */
@media (max-width: 1520px) {
  .ayuda-hub {
    padding-top: 55px;
  }
}

@media (max-width: 900px) {
  .ayuda-hub .ah-card {
    flex: 1 1 calc(50% - 12px);
  }
 
}

@media (max-width: 560px) {
  .ayuda-hub {
    padding: 16px;
    width: 100%;
    padding-top: 50px;
  }
  .ayuda-hub .ah-card {
    flex: 1 1 100%;
  }
  .ayuda-hub .ah-header h1 {
    font-size: 1.625rem;
  }
  .ayuda-hub .ah-article h1 {
    font-size: 1.625rem;
  }
.ayuda-hub .ah-article table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-color: var(--ah-red) var(--ah-card-bg);
    scrollbar-width: thin;
  }

  .ayuda-hub .ah-article table::-webkit-scrollbar {
    height: 6px;
  }

  .ayuda-hub .ah-article table::-webkit-scrollbar-track {
    background: var(--ah-card-bg);
  }

  .ayuda-hub .ah-article table::-webkit-scrollbar-thumb {
    background: var(--ah-red);
    border-radius: 3px;
  }
   .ayuda-hub .ah-mini-cards {
    max-width: 100%;
  }
}