.sacerdotes-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.sacerdote-card {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: #02031af0;
  border-radius: 8px;
  color: #fff;
}

.sacerdote-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.sacerdote-info .sacerdote-imagen {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.sacerdote-info .sacerdote-imagen img {
  aspect-ratio: 1/2;
  object-fit: contain;
  width: 80%;
  max-height: 240px;
  text-align: center;
}

.sacerdote-info .name {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}

.sacerdote-info .name p {
  width: 6px;
  height: 0;
  margin: 0;
  padding: 0;
}

.sacerdote-info .comunidad {
  font-size: clamp(0.9rem, 0.5rem + 1.2vw, 18px);
  font-style: italic;
}

.name h3 {
  color: #fff;
  font-size: clamp(1rem, 1rem + 1vw, 40px);
  text-align: center;
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
}

.sacerdote-detalles {
  padding-top: 10px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
}

.sacerdote-detalle p {
  margin: 3px;
}

.sacerdote-detalle {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .sacerdotes-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .sacerdote-card {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 18px;
  }

  .sacerdote-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    border-bottom: none;
    align-self: center;
  }

  .sacerdote-info .sacerdote-imagen {
    margin-bottom: 10px;
  }

  .sacerdote-info .sacerdote-imagen img {
    aspect-ratio: 2/2;
    object-fit: contain;
    width: 50%;
    max-height: 220px;
    text-align: center;
  }

  .name h3 {
    font-size: clamp(1rem, 1rem, 20px);
  }

  .sacerdote-info .comunidad {
    font-size: clamp(0.9rem, 0.5rem + 1.2vw, 14px);
    font-style: italic;
    margin-bottom: 0;
  }

  .sacerdote-detalles {
    min-width: 150px;
    width: 100%;
    display: block;
  }

  .sacerdote-detalle p:first-child {
    font-size: clamp(0.9rem, 0.5rem + 1.2vw, 14px);
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
  }

  .sacerdote-detalle p:nth-child(2) {
    font-size: clamp(0.4rem, 0.4rem + 1.2vw, 14px);
  }
}

@media (min-width: 1025px) {
  .sacerdotes-card {
    display: flex;
  }

  .sacerdote-info {
    flex: 1 1 480px;
  }
  .sacerdote-detalles {
    flex: 1 1 280px;
  }

  .sacerdote-info .sacerdote-imagen img {
    object-fit: contain;
    max-height: 140px;
    text-align: center;
  }
} /* End custom CSS */
