.id-card {
  width: 950px;
  margin: 2rem auto;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  gap: 28px;
  background: linear-gradient(135deg, #1a1d21, #2d3338);
  color: #ffffff;
  box-shadow: 0 0 38px rgba(0,0,0,.45);
  position: relative;
  font-family: "Montserrat", sans-serif;
}

/* Línea holográfica decorativa */
.id-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(120deg, rgba(0,255,200,.4), rgba(255,205,110,.4), rgba(140,200,255,.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* FOTO */
.id-photo {
  flex: 0 0 230px;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #0f1113;
  display: flex;
  align-items: center;
  justify-content: center;
}
.id-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFORMACIÓN */
.id-info {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.45rem;
}

.id-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .8rem;
  letter-spacing: .6px;
}

.id-info p {
  margin-bottom: .6rem;
}

.id-link {
  color: #93f0ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: .3s;
}
.id-link:hover {
  border-bottom: 1px solid #93f0ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .id-card {
    flex-direction: column;
    width: 95%;
  }
  .id-photo {
    width: 100%;
    height: 330px;
  }
}

.block-text {
  white-space: pre-wrap;
}