.paper-wrap {
  padding: 28px 0 60px;
}

.paper-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.10);
  border-radius: 18px;
  padding: 30px 30px 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pastissues-header {
  text-align: center;
  margin-bottom: 22px;
}

.pastissues-title {
  margin: 0 0 6px;
  font-weight: 900;
  color: #1b2f45;
  letter-spacing: -0.01em;
}

.pastissues-subtitle {
  margin: 0;
  color: rgba(27, 47, 69, 0.65);
  font-weight: 600;
}

.pastissues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pastissue-card {
  min-width: 0;
}

.pastissue-card__body {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.08);
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 10px 24px rgba(27, 47, 69, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pastissue-card__body:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(27, 47, 69, 0.10);
  border-color: rgba(23, 183, 197, 0.18);
}

.pastissue-card__year {
  margin: 0;
  font-weight: 900;
  font-size: 2rem;
  color: #1b2f45;
  letter-spacing: -0.02em;
}

.pastissue-card__divider {
  height: 1px;
  background: rgba(27, 47, 69, 0.14);
  margin: 14px 0 16px;
}

.pastissue-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pastissue-card__link,
.pastissue-card__link:visited,
.pastissue-card__link:hover,
.pastissue-card__link:active,
.pastissue-card__link:focus {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: #1b2f45 !important;
  font-weight: 700;
  line-height: 1.5;
}

.pastissue-card__link:hover .pastissue-card__edition {
  text-decoration: underline;
}

.pastissue-card__label {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(23, 183, 197, 0.08);
  border: 1px solid rgba(23, 183, 197, 0.14);
  color: #0e6f78;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}

.pastissue-card__edition {
  color: rgba(27, 47, 69, 0.88);
}

.pastissues-note {
  margin-top: 24px;
  border-radius: 14px;
  padding: 14px 16px 12px;
  background: rgba(27, 47, 69, 0.04);
  border: 1px solid rgba(27, 47, 69, 0.10);
}

.pastissues-note__label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #0e6f78;
}

.pastissues-note__text {
  margin: 0;
  color: rgba(27, 47, 69, 0.90);
  line-height: 1.6;
  font-weight: 600;
}

.pastissues-note__text a {
  font-weight: 800;
  text-decoration: none;
}

.pastissues-note__text a:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .pastissues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .paper-card {
    padding: 22px 18px 20px;
  }

  .pastissues-grid {
    grid-template-columns: 1fr;
  }

  .pastissue-card__year {
    font-size: 1.7rem;
  }
}