/* =============================================================================
 * css/custom-sections.css
 * Estilos para secciones personalizadas creadas desde el panel admin
 * ============================================================================= */

.custom-dynamic-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(15,40,71,.02), rgba(201,162,75,.04));
}

.custom-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.custom-section-image {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(201,162,75,.35);
    box-shadow: 0 18px 50px rgba(15,40,71,.18);
    background: #0a0f1e;
}
.custom-section-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
    background: #0a0f1e;
}

.custom-section-body {
    padding: 10px 0;
}
.custom-section-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--ivory, #f5f1e8);
    text-align: justify;
    margin-bottom: 22px;
}

@media (max-width: 900px) {
    .custom-section-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .custom-dynamic-section { padding: 50px 0; }
    .custom-section-content { font-size: 1rem; }
}
