/**
 * Vista de resultados MEII (proceso extraordinario) en aceptados.php
 */

.aceptados-meii {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 2.5rem;
}

.aceptados-meii__enlace {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 18rem;
  width: 100%;
  padding: 1.75rem 1.5rem;
  text-decoration: none !important;
  border: 2px solid #d8d8d8;
  border-radius: 0.5em;
  background: #fff;
  cursor: pointer !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.aceptados-meii__enlace,
.aceptados-meii__enlace * {
  cursor: pointer !important;
}

.aceptados-meii__enlace:hover,
.aceptados-meii__enlace:focus {
  border-color: #bc921c;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
  outline: none;
}

.aceptados-meii__icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.5em;
  background: rgba(188, 146, 28, 0.12);
  color: #bc921c;
  font-size: 3rem;
  line-height: 1;
}

.aceptados-meii__etiqueta {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #122b40;
}

.aceptados-meii__archivo {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  color: #717479;
}

@media screen and (max-width: 736px) {
  .aceptados-meii {
    padding: 1rem 0.5rem 2rem;
  }

  .aceptados-meii__enlace {
    max-width: 16rem;
    padding: 1.35rem 1rem;
  }

  .aceptados-meii__icono {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aceptados-meii__enlace {
    transition: none;
  }

  .aceptados-meii__enlace:hover,
  .aceptados-meii__enlace:focus {
    transform: none;
  }
}
