
.gloss-page {
  color: #171717;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.085px;
  background: white;
}

/* — Hero — */
.gloss-hero {
  background: #1B1851;
  color: #fff;
  text-align: center;
  padding: 136px 24px 80px;
}
.gloss-hero__label {
  color: #FFF;
  text-align: center;
  font-family: PlutoRegular;
  font-size: 19.7px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.67px; /* 130.305% */
  letter-spacing: -1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gloss-hero__title {
	color: #FFF031;
  text-align: center;
  font-family: PlutoRegular;
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 59.8px; /* 130% */
  letter-spacing: -2.76px;
  margin-bottom: 10px;
}
.gloss-hero__sub {
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.9px; /* 170% */
  margin-bottom: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* — Nav A–Z — */
.gloss-nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 1;
  padding: 12px 24px;
}
.gloss-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.gloss-nav__list li {
	margin-bottom: 0;
}
.gloss-nav__item {
  display: inline-block;
  padding: 0px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: background .15s, color .15s;
}
.gloss-nav__item:hover {
  color: #000;
  text-decoration: underline;
}
.gloss-nav__item--disabled {
  color: #cbd5e0;
  pointer-events: none;
}

/* — Contenido — */
.gloss-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* — Sección letra — */
.gloss-section {
  margin-bottom: 56px;
  scroll-margin-top: 64px;
}
.gloss-section__letter {
  color: #1B1851;
  text-align: center;
  font-family: PlutoBold;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 101%; /* 32.32px */
  text-align: center;
}

/* — Grid de tarjetas — */
.gloss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .gloss-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gloss-grid { grid-template-columns: 1fr; }
}

/* — Tarjeta — */
.gloss-card {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gloss-card:hover {
	background: #F5F5F5;
}

.gloss-card__term {
  color: #1B1851;
  font-family: Roboto;
  font-size: 17.634px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.088px;
}

.gloss-card__term a {
  color: inherit;
  text-decoration: none;
}
.gloss-card__term a:hover {
  text-decoration: underline;
}
.gloss-card__def {
  color: #171717;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.085px;
}
.gloss-card__more {
  color: #171717;
  text-align: right;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.075px;
  text-decoration: none;
  align-self: flex-end;
}
.gloss-card__more:hover { color: #171717; }
