/* Estilos para el contenido de CKEditor en el frontend */

/* Configuración de fuentes para soporte completo de emojis */
.property-description, .property-description-detail {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    font-feature-settings: "liga" 1, "calt" 1;
    -webkit-font-feature-settings: "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
}

/* Normalizar white-space para elementos con formato específico */
.property-description *, .property-description-detail * {
    white-space: normal;
}

/* Elementos que sí deben preservar saltos de línea */
.property-description p, .property-description-detail p,
.property-description div, .property-description-detail div,
.property-description li, .property-description-detail li,
.property-description blockquote, .property-description-detail blockquote {
    white-space: pre-line;
}

/* Estilos para headings */
.property-description h1, .property-description-detail h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0 10px 0;
    color: #fff;
}

.property-description h2, .property-description-detail h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 12px 0 8px 0;
    color: #fff;
}

.property-description h3, .property-description-detail h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 6px 0;
    color: #fff;
}

.property-description-detail h1,
.property-description-detail h2,
.property-description-detail h3 {
    color: #535353 !important;
}

/* Estilos para listas */
.property-description ul, .property-description-detail ul,
.property-description ol, .property-description-detail ol {
    margin: 10px 0;
    padding-left: 20px;
}

.property-description li, .property-description-detail li {
    margin: 5px 0;
    line-height: 1.6;
}

/* Estilos para texto formateado */
.property-description strong, .property-description-detail strong {
    font-weight: bold;
}

.property-description em, .property-description-detail em {
    font-style: italic;
}

.property-description u, .property-description-detail u {
    text-decoration: underline;
}

/* Estilos para enlaces */
.property-description a, .property-description-detail a {
    color: #007bff;
    text-decoration: underline;
}

.property-description a:hover, .property-description-detail a:hover {
    color: #0056b3;
}

/* Para el fondo oscuro del modal */
.property-description a {
    color: #66b3ff;
}

.property-description a:hover {
    color: #99ccff;
}

/* Estilos para blockquotes */
.property-description blockquote, .property-description-detail blockquote {
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin: 15px 0;
    font-style: italic;
    background-color: rgba(0, 123, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px;
}

/* Espaciado de párrafos */
.property-description p, .property-description-detail p {
    margin: 10px 0;
    line-height: 1.6;
}

/* Manejo específico de saltos de línea con <br> */
.property-description br, .property-description-detail br {
    line-height: 1.6;
}

/* Mejorar el espaciado entre párrafos cuando hay contenido con <br> */
.property-description p:empty, .property-description-detail p:empty {
    margin: 5px 0;
    line-height: 1;
}

/* Asegurar que el contenido directo también respete saltos de línea */
.property-description > text, .property-description-detail > text {
    white-space: pre-line;
}

/* Emojis - asegurar que se vean bien */
.property-description, .property-description-detail {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

/* Responsive */
@media (max-width: 768px) {
    .property-description h1, .property-description-detail h1 {
        font-size: 20px;
    }
    
    .property-description h2, .property-description-detail h2 {
        font-size: 18px;
    }
    
    .property-description h3, .property-description-detail h3 {
        font-size: 16px;
    }
    
    .property-description, .property-description-detail {
        font-size: 14px;
    }
}

/* Fondos de texto */
.property-description [style*="background-color"], .property-description-detail [style*="background-color"] {
    padding: 2px 4px;
    border-radius: 3px;
}