
/* v7.0 - verificación de certificados */
.ji-cert-verify{
  max-width:760px;
  margin:2rem auto;
  background:#ffffff;
  border:1px solid #dfe7e6;
  box-shadow:0 14px 34px rgba(16,45,62,.08);
}
.ji-cert-verify__head{
  padding:1.4rem 1.4rem .5rem;
}
.ji-cert-verify__head h2{
  margin:0 0 .55rem;
  color:#1f7a75;
  font-size:clamp(1.7rem,3vw,2.35rem);
}
.ji-cert-verify__head p{
  color:#526274;
  line-height:1.55;
}
.ji-cert-verify__form{
  padding:1rem 1.4rem 1.4rem;
  display:grid;
  gap:1rem;
}
.ji-cert-verify__form label{
  color:#28445a;
  font-weight:800;
}
.ji-cert-verify__form input{
  width:100%;
  min-height:46px;
  border:1px solid #cfdadb;
  border-radius:12px;
  padding:.75rem .9rem;
  margin-top:.35rem;
  font-size:1rem;
}
.ji-cert-verify__form button{
  min-height:48px;
  border:0;
  border-radius:999px;
  background:#f5bd3d;
  color:#ffffff;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}
.ji-cert-result{
  margin:0 1.4rem 1.4rem;
  padding:1.1rem;
  border-radius:14px;
  border:1px solid #dfe7e6;
}
.ji-cert-result h3{
  margin:0 0 1rem;
}
.ji-cert-result--valid{
  background:#eefaf6;
  border-color:#1f9d76;
}
.ji-cert-result--expired{
  background:#fff8e5;
  border-color:#f5bd3d;
}
.ji-cert-result--invalid{
  background:#fff1f1;
  border-color:#d76b6b;
}
.ji-cert-result dl{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:.45rem .9rem;
  margin:0;
}
.ji-cert-result dt{
  font-weight:900;
  color:#28445a;
}
.ji-cert-result dd{
  margin:0;
  color:#526274;
}
.ji-cert-result__note{
  margin:1rem 0 0;
  font-size:.92rem;
  color:#526274;
}
@media (max-width:640px){
  .ji-cert-result dl{
    grid-template-columns:1fr;
  }
}
