.tarjeta-descarga {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1), 0 1px 2px rgb(0 0 0 / 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 180px;
}

.tarjeta-descarga-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.tarjeta-descarga-imagen-icono:has(.icono-tipo-fichero) {
  flex: 0.25;
}

.tarjeta-descarga-header .icono-tipo-fichero {
  font-size: 3rem;
}

.tarjeta-descarga-header .icono-tipo-fichero.fa-file-lines {
  color: #ececec;
}

.tarjeta-descarga-header .icono-tipo-fichero.fa-file-pdf {
  color: #f40f02;
}

.tarjeta-descarga-header .icono-tipo-fichero.fa-file-word {
  color: #2b579a;
}

.tarjeta-descarga-header .icono-tipo-fichero.fa-file-excel {
  color: #217346;
}

.tarjeta-descarga-header .icono-tipo-fichero.fa-file-powerpoint {
  color: #d24726;
}

.tarjeta-descarga-header .icono-tipo-fichero.fa-file-image {
  color: #ffd700;
}

.tarjeta-descarga-header .icono-tipo-fichero.fa-file-video {
  color: #8a2be2;
}

.tarjeta-descarga-imagen-icono,
.tarjeta-descarga-texto {
  flex: 1;
}

.tarjeta-descarga-imagen-icono img {
  width: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  aspect-ratio: 1 / 1.5;
  max-width: 200px;
}

.tarjeta-descarga-texto {
  word-break: break-word;
}

.tarjeta-descarga-texto p.tarjeta-descarga-tamano-fichero {
  font-size: 0.75rem;
  line-height: 1rem;
}

.tarjeta-descarga-texto p.tarjeta-descarga-descripcion {
  margin: 0;
}

.tarjeta-descarga .btn {
  margin: 0 auto;
}

@media (min-width: 1130px) {
  .tarjeta-descarga-header {
    flex-direction: row;
    align-items: flex-start;
    text-align: inherit;
  }
}
