/* Contenedor centrado */
.auditorias-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1rem;
    background-color: #D4DDBC;
  }
  
  /* Tarjeta más grande, sin efectos extra */
  .auditoria-card {
    width: 100%;
    max-width: 700px;
    background-color: #fff;
    border-left: 8px solid #7A972A;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }
  
  /* Cabecera */
  .auditoria-header .titulo {
    font-size: 1.8rem;
    color: #405510;
    margin-bottom: 0.4rem;
  }
  
  .auditoria-header .fecha-post {
    font-size: 1rem;
    color: #7A972A;
    margin-bottom: 1.5rem;
  }
  
  /* Cuerpo */
  .auditoria-body p {
    margin: 0.4rem 0;
    font-size: 1.05rem;
    color: #000;
  }
  
  /* Footer */
  .auditoria-footer {
    margin-top: 2rem;
  }
  
  .auditoria-body,
  .auditoria-footer {
    margin-top: 1.5rem;
  }

  /* Botón de descarga */
  .btn-ver {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: #405510; 
    color: #fff;              
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s;
  }
  
  .btn-ver:hover {
    background-color: #7A972A; 
    color: #fff;  
  }
  
  /* Sin archivo */
  .sin-archivo {
    color: #000;
    font-style: italic;
    opacity: 0.7;
    margin-top: 1rem;
  }

  .auditoria-card.con-imagen .auditoria-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  
  .auditoria-header-info .auditoria-header {
    flex: 1;
  }
  
  .auditoria-imagen {
    flex-shrink: 0;
    max-width: 200px;
  }
  
  .auditoria-imagen img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
.auditoria-error {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #ffe8e8;
  color: #a94442;
  border-left: 6px solid #d9534f;
  border-radius: 10px;
  font-size: 1.2rem;
  text-align: center;
}