/* Archivo: public/assets/css/custom.css */
/* Descripción: Estilos para mejorar la presentación de los resultados de búsqueda. */

/* Estilo para el resaltado de texto, ahora más gráfico */
mark.highlight {
    background: linear-gradient(105deg, #DDC9A3, #c9b38e); /* Gradiente sutil */
    color: #440c1a; /* Un tono de vino más oscuro para mejor contraste */
    padding: 2px 6px;
    margin: 0 -2px; /* Evita que el padding separe las palabras */
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* Sombra ligera */
    border-bottom: 2px solid #A02142; /* Borde inferior para dar énfasis */
}


/* Tarjeta de resultado mejorada */
.result-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.result-card:hover,
.result-card:focus-within { /* Usar focus-within para accesibilidad */
    outline: none;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #A02142; /* Color institucional rosado */
}

/* Título de la tarjeta */
.result-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #691b31; /* Color institucional vino */
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

/* Cuerpo del resultado */
.result-body {
    color: #4b5563;
    line-height: 1.6;
}

/* Pie de página de la tarjeta (metadatos) */
.result-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-item {
    color: #6b7280;
}

.footer-label {
    font-weight: 600;
    color: #374151;
    margin-right: 0.5em;
}

.footer-item.wide {
    grid-column: 1 / -1;
}


/* Botones de acción */
.result-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    background-color: #f9fafb;
    color: #691b31;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-action:hover {
    background-color: #691b31;
    color: #ffffff;
    border-color: #691b31;
}

/* Elementos del sumario dentro del cuerpo */
.summary-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.summary-bullet {
    margin-right: 0.75rem;
    color: #BC955B; /* Color institucional dorado */
    font-size: 1.2em;
    line-height: 1.5;
}
.summary-text {
    flex: 1;
}
hr.summary-divider {
    border-top: 1px dashed #e5e7eb;
    margin: 0.75rem 0;
}

