body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 14px;
  color: #495057;
  background: #f8f9fa;
}

a {
  text-decoration: none;
}

/* ===== TOPBAR ===== */
.topbar-wrapper {
  width: 90%;
  max-width: 1220px;
  margin: 14px auto 0 auto;
}

.topbar {
  background: #f8f9fa;
  border: 1px solid #dfe3e6;
  border-radius: 6px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo img {
  height: 42px;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 18px;
}

.menu a {
  color: #495057;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.menu a:hover {
  background: #e9ecef;
  color: #212529;
}

.menu .primary-link {
  margin-left: 8px;
}

/* ===== BUTTONS ===== */
.pf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2196f3;
  border: 1px solid #2196f3;
  color: #ffffff !important;
  border-radius: 4px;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
  cursor: pointer;
}

.pf-button:hover {
  background: #1d8bf0;
  border-color: #1d8bf0;
  box-shadow: 0 0 0 0.1rem rgba(33, 150, 243, 0.16);
}

.pf-button.secondary {
  background: #ffffff;
  color: #2196f3 !important;
  border: 1px solid #2196f3;
}

.pf-button.secondary:hover {
  background: #f4faff;
}

/* ===== MAIN ===== */
.container {
  width: 90%;
  max-width: 1220px;
  margin: 2rem auto 0 auto;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  min-height: 430px;
}

.background-shadow-2 {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 980px;
  height: 420px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.025) 38%,
    rgba(0, 0, 0, 0) 72%
  );
  z-index: 0;
  pointer-events: none;
}

.background-shadow {
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 320px;
  background-image: url("/img/common/sombra.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.container > *:not(.background-shadow):not(.background-shadow-2) {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.25rem;
  font-weight: 700;
  color: #495057;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0 0 2rem 0;
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ===== CARDS ===== */
.card {
  width: 320px;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
}

.card-header {
  padding: 1rem 1.25rem;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.card-header h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 700;
  color: #495057;
}

.card-body {
  padding: 1.6rem 1.5rem 1.8rem 1.5rem;
}

.card p {
  margin: 0 0 1.3rem 0;
  font-size: 0.98rem;
  color: #6c757d;
  line-height: 1.5;
  min-height: 72px;
}

.card .pf-button {
  min-width: 160px;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 2.5rem;
  text-align: center;
  padding-bottom: 12px;
}

.footer img {
  height: 100px;
  width: auto;
  max-width: 90%;
  opacity: 0.32;
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .background-shadow-2,
  .background-shadow {
    width: 90%;
  }
}

.content-block {
  max-width: 800px;
  margin: 2rem auto;
  text-align: left;
}

.content-block h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.feature-list {
  padding-left: 1.2rem;
  line-height: 1.6;
  color: #495057;
}

.feature-list li {
  margin-bottom: 0.6rem;
}

.navigation-links {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-subtitle strong {
  color: #495057;
}

.content-block h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.content-block p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.rules-quote {
  margin: 1rem 0 1.5rem 0;
  padding: 1rem 1.2rem;
  background: #f8f9fa;
  border-left: 4px solid #2196f3;
  color: #495057;
  line-height: 1.6;
}
.errata-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}

.errata-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.errata-section h2 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: #495057;
}

.errata-image {
  margin-top: 1rem;
  text-align: center;
}

.errata-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.errata-thanks {
  margin-top: 1.5rem;
  font-style: italic;
}

.download-box {
  margin: 1.5rem 0 2rem 0;
  padding: 1rem 1.2rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-align: center;
}

.download-box p {
  margin: 0 0 0.8rem 0;
  color: #495057;
}

.compact-grid {
  align-items: start;
}

.compact-card {
  max-width: 420px;
  margin: 0 auto;
}

.compact-card img {
  width: 100%;
  max-width: 360px;
  max-height: 260px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background: #fff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: start;
}

.comparison-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  max-width: 420px;
  margin: 0 auto;
}

.comparison-card h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #495057;
}

.comparison-card img {
  width: 100%;
  max-width: 360px;
  max-height: 260px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}
.resource-cards {
  align-items: stretch;
}

.resource-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-preview {
  margin-bottom: 1rem;
  text-align: center;
}

.resource-preview img {
  max-width: 100%;
  width: 260px;
  height: auto;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.resource-card p {
  min-height: 48px;
}
.template-group {
  margin: 2.5rem 0;
}

.template-group h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #495057;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.5rem;
}

.template-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.template-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-bottom: 0.8rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background: #fff;
}

.template-card p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #495057;
}

@media (max-width: 900px) {
  .template-grid {
    grid-template-columns: 1fr;
  }
}

.rules-panel p {
  margin-bottom: 0.9rem;
  line-height: 1.65;
  color: #495057;
}

.related-block {
  margin-top: 2.5rem;
}

.related-block h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #495057;
}

.related-cards {
  align-items: stretch;
}
.scenario-section {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  text-align: left;
}

.scenario-section h2 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #495057;
}

.scenario-section p {
  line-height: 1.65;
  margin-bottom: 0.9rem;
  color: #495057;
}

.scenario-map {
  text-align: center;
  margin-top: 1rem;
}

.scenario-map img {
  max-width: 100%;
  height: auto;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.scenario-section {
  max-width: 920px;
  margin: 0 auto 2.2rem auto;
  text-align: left;
}

.scenario-section h2 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #495057;
}

.scenario-section h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  color: #495057;
}

.scenario-section h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #6c757d;
}

.scenario-section p {
  line-height: 1.65;
  margin-bottom: 0.9rem;
  color: #495057;
}

.scenario-map,
.scenario-image-block {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.scenario-map img,
.scenario-image-block img {
  max-width: 100%;
  height: auto;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.rules-intro {
  max-width: 860px;
  margin: 1.5rem auto 2rem auto;
  text-align: center;
  color: #6c757d;
  line-height: 1.6;
}

.rules-library {
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rules-article-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rules-article-header {
  padding: 1.3rem 1.3rem 0.7rem 1.3rem;
  text-align: left;
}

.rules-article-header h3 {
  margin: 0.4rem 0 0 0;
  font-size: 1.25rem;
  color: #343a40;
  line-height: 1.35;
}

.rules-article-body {
  padding: 0 1.3rem 1.3rem 1.3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rules-article-body p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

@media (max-width: 900px) {
  .rules-library {
    grid-template-columns: 1fr;
  }
}
.article-layout {
  max-width: 1150px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.article-main {
  text-align: left;
}

.article-section {
  margin-bottom: 2.2rem;
}

.article-section h2 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
  color: #495057;
}

.article-section p {
  line-height: 1.7;
  color: #495057;
  margin-bottom: 1rem;
}

.article-image-section .article-figure {
  text-align: center;
  margin-top: 1rem;
}

.article-figure img {
  max-width: 100%;
  height: auto;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.figure-caption {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: #6c757d;
  text-align: center;
}

.sample-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.sample-gallery img {
  width: 100%;
  height: auto;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sample-note {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: #6c757d;
}

.article-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1.2rem;
  text-align: left;
}

.side-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #495057;
  font-size: 1.1rem;
}

.side-card p {
  margin: 0;
  color: #495057;
  line-height: 1.6;
}

.related-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.related-links a {
  color: #2196f3;
  text-decoration: none;
}

.related-links a:hover {
  text-decoration: underline;
}

@media (max-width: 950px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}
.article-byline {
  margin-bottom: 1.6rem;
  text-align: left;
  color: #6c757d;
}

.article-byline p {
  margin: 0;
}
.docs-hero {
  max-width: 1150px;
  margin: 0 auto 2.5rem auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.docs-hero-text {
  text-align: left;
}

.docs-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #d7dce1;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 0.78rem;
  font-weight: 600;
}

.docs-lead {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #495057;
  margin: 1rem 0 1.4rem 0;
}

.docs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.docs-hero-side {
  display: flex;
}

.docs-info-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.4rem;
  text-align: left;
}

.docs-info-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  color: #343a40;
}

.docs-info-card p {
  margin: 0;
  line-height: 1.65;
  color: #6c757d;
}

.docs-layout {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  align-items: start;
}

.docs-nav {
  position: sticky;
  top: 90px;
}

.docs-nav-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 1rem 0.9rem 1rem;
  text-align: left;
}

.docs-nav-card h3 {
  margin: 0 0 0.9rem 0;
  font-size: 1rem;
  color: #495057;
}

.docs-nav-card a {
  display: block;
  padding: 0.45rem 0;
  color: #495057;
  text-decoration: none;
  line-height: 1.45;
}

.docs-nav-card a:hover {
  color: #2196f3;
}

.docs-content {
  text-align: left;
}

.docs-section {
  margin-bottom: 2.8rem;
}

.docs-section-header {
  margin-bottom: 1.25rem;
}

.docs-section-header h2 {
  margin: 0 0 0.45rem 0;
  font-size: 1.55rem;
  color: #343a40;
}

.docs-section-header p {
  margin: 0;
  color: #6c757d;
  line-height: 1.65;
}

.docs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.25rem;
}

.doc-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  text-align: left;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.doc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.doc-card.featured {
  border-color: #cfe2ff;
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.08);
}

.doc-card-header h3 {
  margin: 0.55rem 0 0 0;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #343a40;
}

.doc-card p {
  margin: 0.9rem 0 1rem 0;
  color: #495057;
  line-height: 1.65;
}

.doc-link {
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
}

.doc-link:hover {
  text-decoration: underline;
}

.doc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.doc-badge {
  display: inline-block;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #d7dce1;
  background: #f8f9fa;
  color: #495057;
  font-size: 0.76rem;
  font-weight: 600;
}

.doc-badge.core {
  background: #e8f4fd;
  border-color: #b6daf7;
  color: #1f4f82;
}

.doc-badge.analysis {
  background: #f3f4f6;
  border-color: #d7dce1;
  color: #495057;
}

.doc-badge.history {
  background: #f5efe6;
  border-color: #e5d4b8;
  color: #7a5226;
}

.doc-badge.cavalry {
  background: #f3ecff;
  border-color: #d9c8ff;
  color: #5b3fa3;
}

.doc-badge.standard,
.doc-badge.rules {
  background: #eef7ee;
  border-color: #cfe6cf;
  color: #2f6b39;
}

.doc-badge.measurement {
  background: #f8f1ff;
  border-color: #e0cff7;
  color: #6c3ea0;
}

.doc-badge.movement {
  background: #eef7ff;
  border-color: #cfe3f4;
  color: #2b5d7f;
}

.doc-badge.command {
  background: #fff4e6;
  border-color: #f2ddbd;
  color: #8a5a1f;
}

.doc-badge.optional {
  background: #fcebea;
  border-color: #f5c6c3;
  color: #8a2d2b;
}

.doc-badge.bua {
  background: #f0f7ef;
  border-color: #d4e7d1;
  color: #3c6c35;
}

.doc-badge.fire {
  background: #fff1f0;
  border-color: #f3d0cc;
  color: #9a3f32;
}

.doc-badge.special {
  background: #f6f6f6;
  border-color: #dddddd;
  color: #666;
}

.doc-badge.artillery {
  background: #eef2ff;
  border-color: #d5ddff;
  color: #4456a6;
}

.doc-badge.infantry {
  background: #f2f5e8;
  border-color: #dce4c2;
  color: #5a6c2f;
}

@media (max-width: 1024px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-nav {
    position: static;
  }

  .docs-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .docs-card-grid {
    grid-template-columns: 1fr;
  }
}
.placeholder-hero {
  max-width: 860px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.placeholder-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d7dce1;
  background: #f8f9fa;
  color: #6c757d;
  font-size: 0.78rem;
  font-weight: 600;
}

.placeholder-card {
  max-width: 760px;
  margin: 0 auto 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.placeholder-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #343a40;
  font-size: 1.5rem;
}

.placeholder-card p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #495057;
}

.placeholder-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.placeholder-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.placeholder-note p {
  color: #6c757d;
  line-height: 1.65;
}
a.pf-button {
  display: inline-block;
  text-decoration: none;
}

.menu a.active {
  background: #e8f4fd;
  color: #1f4f82;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 #2196f3;
}

.breadcrumb {
  width: 90%;
  max-width: 1220px;
  margin: 1rem auto 1.25rem auto;
  text-align: left;
  font-size: 0.95rem;
  color: #6c757d;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #6c757d;
  margin: 0 0.35rem;
}

.breadcrumb span:last-child {
  color: #495057;
  font-weight: 600;
}
@media (max-width: 640px) {
  .menu a {
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
  }

  .pf-button {
    font-size: 0.95rem;
    padding: 0.6rem 0.85rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
.breadcrumb {
  line-height: 1.6;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .breadcrumb {
    font-size: 0.9rem;
    margin: 0.85rem auto 1rem auto;
  }
}

.footer {
  margin-top: 3rem;
  text-align: center;
  padding: 0.5rem 0 14px 0;
}
