.digital-formats {
  padding: 8px 0;
}
.digital-formats__title {
  margin: 0 0 14px;
  font-weight: 700;
  color: #134caa;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.1;
}
.digital-formats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.digital-formats__grid li {
  text-align: center;
}
.digital-formats__grid li .chip__note {
  bottom: 8px;
  left: 12px;
  right: 12px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip {
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px 14px 26px;
  border-radius: 22px;
  background: #f3f4f6;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.08);
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.chip::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: -1;
}
.chip .chip__main {
  font-weight: 800;
  color: #134caa;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: 0.3px;
  line-height: 1;
}
.chip .chip__icon {
  color: #134caa;
  margin-bottom: 4px;
  display: inline-grid;
  place-items: center;
}
.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.chip--pdf {
  padding-top: 16px;
}
.chip--pdf .chip__main {
  display: none;
}
.chip--pdf .chip__icon svg {
  display: block;
}

@media (max-width: 520px) {
  .digital-formats__grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
  }
  .chip {
    padding: 16px 12px 24px;
  }
}

/*# sourceMappingURL=descargas.css.map */
