/* ==========================================
   Compact Landing Page - Белорусская нейросеть
   ========================================== */

/* CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    --success-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --card-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    --card-hover-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Company Logo */
.hero-company-logo {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    transform: translate(19px, -53px);
}

.hero-company-logo img {
    max-height: 70px;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    cursor: pointer;
}

.hero-company-logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

/* Admin editing - logo draggable */
body.admin-editing .hero-company-logo {
    position: relative !important;
    cursor: move;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 10px;
    min-width: 50px;
    min-height: 30px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

body.admin-editing .hero-company-logo:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}

body.admin-editing .hero-company-logo::after {
    content: '✏️ Логотип';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

body.admin-editing .hero-company-logo:hover::after {
    opacity: 1;
}

body.admin-editing .hero-company-logo img {
    cursor: grab;
    pointer-events: auto !important;
}

body.admin-editing .hero-company-logo img:active {
    cursor: grabbing;
}

/* Hero section needs relative positioning for absolute logo dragging */
.hero-section {
    position: relative;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 70px;
    }

    .hero-company-logo img {
        max-height: 50px;
        max-width: 200px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.25);
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    line-height: 1.15;
}

.hero-section [data-editable-id="hero-subtitle"] {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.hero-section [data-editable-id="hero-description"] {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: #667eea;
    border: none;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
    color: #764ba2;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: white;
    color: #667eea;
    border-color: white;
    transform: translateY(-3px);
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    font-size: 1.5rem;
    color: #667eea;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.trust-label {
    color: #718096;
    font-size: 0.85rem;
}

/* ==================== SOLUTIONS SECTION ==================== */
.solutions-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #1e1b4b;
}

.solutions-section .section-header h2 {
    color: #1e1b4b;
}

.solutions-section .section-header p {
    color: #4c1d95;
}

.solution-card {
    background: white;
    border: 1px solid #c7d2fe;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.solution-card:hover {
    background: white;
    border-color: #a78bfa;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.solution-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
}

.solution-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e1b4b;
}

.solution-card p {
    color: #5b21b6;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    padding: 70px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    color: #667eea;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.solutions-section .section-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #4c1d95;
}

.benefits-section .section-badge {
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    color: #667eea;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1rem;
    color: #718096;
}

.benefit-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.12);
    border-color: #667eea;
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.benefit-icon {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a202c;
}

.benefit-card p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    transition: var(--transition);
}

.why-us-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.why-us-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.1rem;
}

.why-us-text h6 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #1a202c;
}

.why-us-text p {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ==================== COURSE SECTION ==================== */
.course-section {
    padding: 80px 0;
    background: white;
}

.course-card {
    background: var(--primary-gradient);
    border-radius: 24px;
    padding: 45px;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.course-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.course-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.course-price {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 10px 25px;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.course-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.course-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.course-program {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
}

.course-program h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.course-program ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-program li {
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.course-program li:last-child {
    border-bottom: none;
}

.btn-course {
    background: white;
    color: #667eea;
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-course:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ==================== BONUSES SECTION ==================== */
.bonuses-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.bonus-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonuses-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 70px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 25px;
    margin: 0 auto 40px;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px;
    font-size: 1rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #c4b5fd;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: #667eea;
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: white;
    color: #667eea;
}

/* ==================== INLINE EDITING STYLES ==================== */
/* Admin editing class */
body.admin-editing #page-content [data-editable-id] {
    position: relative !important;
    display: inline-block !important;
}

body.admin-editing #page-content [data-editable-id]:hover::after {
    content: '' !important;
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    width: 28px !important;
    height: 28px !important;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: 2px solid white !important;
    border-radius: 50% !important;
    z-index: 10002 !important;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.5) !important;
    cursor: pointer !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transition: all 0.2s ease !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168l10-10zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207 11.207 2.5zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293l6.5-6.5zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325z'/%3E%3C/svg%3E") !important;
    background-size: 14px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transform: scale(1) !important;
}

/* Buttons with editable text */
body.admin-editing a[data-editable-id][href] {
    position: relative !important;
}

body.admin-editing a[data-editable-id][href]:hover::after {
    content: '' !important;
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    width: 28px !important;
    height: 28px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: 2px solid white !important;
    border-radius: 50% !important;
    z-index: 10003 !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.6) !important;
    cursor: pointer !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transition: all 0.2s ease !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168l10-10zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207 11.207 2.5zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293l6.5-6.5zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325z'/%3E%3C/svg%3E") !important;
    background-size: 14px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transform: scale(1) !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .course-card h2 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .hero-section [data-editable-id="hero-subtitle"] {
        font-size: 1.1rem;
    }

    .trust-section,
    .solutions-section,
    .benefits-section,
    .why-us-section,
    .course-section,
    .cta-section {
        padding: 50px 0;
    }

    .course-card {
        padding: 30px;
    }

    .course-card h2 {
        font-size: 1.4rem;
    }

    .course-features {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline,
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
    }
}

/* ==================== LOGO EDITOR STYLES ==================== */
#logoEditorModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

#logoEditorModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

#logoEditorModal .form-range::-webkit-slider-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#logoEditorModal .form-range::-moz-range-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#logoEditorModal .form-range::-ms-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#logoPreviewImg {
    transition: all 0.3s ease;
}

#logoPreviewImg:hover {
    transform: scale(1.05);
}

#logoEditorModal .btn-check:checked + .btn-outline-primary {
    background-color: #667eea;
    border-color: #667eea;
    color: white;
}

/* Video Wrapper - border and aspect ratio */
.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 7 !important;
    border: 3px solid #a0aec0;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   Solutions Section - solution-number spacing
   ========================================== */
.solution-number {
    display: inline-block;
    margin-right: 0.5em;
}

.solution-card h5 {
    display: inline-block;
}

/* ==========================================
   News Section - автоматические иконки
   ========================================== */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 7.5mm;
}

.news-list li {
    margin-bottom: 3.25mm;
    padding: 0;
    line-height: 6.5mm;
    display: flex;
    align-items: flex-start;
}

/* Автоматическая иконка-стрелка в круге перед каждой новостью */
.news-list li::before {
    content: "\F138";
    font-family: "bootstrap-icons";
    color: #667eea;
    margin-right: 10px;
    font-size: 0.85rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #667eea;
    border-radius: 50%;
}

.news-list li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: #667eea;
    transition: color 0.2s ease;
}

.news-list li a:hover {
    color: #4a5568;
}

.news-list .news-icon {
    display: none; /* Скрываем старые иконки в HTML */
}

.news-list .news-text {
    line-height: 1.4;
}

/* ==========================================
   Quill Editor Alignment Classes
   Для отображения выравнивания текста и изображений
   ========================================== */

/* Text alignment */
.ql-align-left {
    text-align: left !important;
}

.ql-align-center {
    text-align: center !important;
}

.ql-align-right {
    text-align: right !important;
}

.ql-align-justify {
    text-align: justify !important;
}

/* Image alignment within page content */
#page-content img.ql-align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#page-content img.ql-align-right {
    float: right;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

#page-content img.ql-align-left {
    float: left;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

/* ==========================================
   Text Elements with Links (data-editable-href)
   Ссылки на текстовых элементах без изменения стиля
   При наведении — изменение цвета только если есть реальная ссылка
   ========================================== */

/* Текстовые ссылки — без визуальных изменений */
#page-content a[data-editable-href]:not(.btn):not(.btn-hero-primary):not(.btn-hero-outline):not(.btn-course):not(.btn-cta-primary):not(.btn-cta-outline):not(.contact-item a) {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Без ссылки — обычный курсор (не pointer) */
#page-content a[data-editable-href]:not(.btn):not(.btn-hero-primary):not(.btn-hero-outline):not(.btn-course):not(.btn-cta-primary):not(.btn-cta-outline):not(.contact-item a):not(.has-link) {
    cursor: default;
}

/* При наведении — только если есть реальная ссылка (класс has-link) */
/* Секции с фиолетовым фоном (белый текст) — светло-фиолетовый при наведении */
.hero-section a[data-editable-href].has-link:not(.btn):not(.btn-hero-primary):not(.btn-hero-outline):hover,
.why-us-section a[data-editable-href].has-link:hover,
.course-section a[data-editable-href].has-link:not(.btn-course):hover,
.bonuses-section a[data-editable-href].has-link:hover,
.cta-section a[data-editable-href].has-link:not(.btn-cta-primary):not(.btn-cta-outline):not(.contact-item a):hover {
    color: #c4b5fd !important;
    cursor: pointer;
}

/* Секции со светлым фоном (тёмный текст) — фиолетовый при наведении */
.trust-section a[data-editable-href].has-link:hover,
.solutions-section a[data-editable-href].has-link:hover,
.benefits-section a[data-editable-href].has-link:hover,
.video-news-section a[data-editable-href].has-link:hover {
    color: #667eea !important;
    cursor: pointer;
}
