
.theme-night .title-text-page{
    color: #344161;
}


/* Основные стили для контента */
.content-detail {
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
    color: #7f92b0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.theme-night .content-detail{
    color: #7f92b0;
}

.content-detail h1,
.content-detail h2,
.content-detail h3,
.content-detail h4{
    background: linear-gradient(90deg, rgb(14, 165, 234), rgb(11, 209, 209) 51%, rgb(14, 165, 234)) var(--x, 0)/200%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.theme-night .content-detail h1,
.theme-night .content-detail h2,
.theme-night .content-detail h3,
.theme-night .content-detail h4{
    background: linear-gradient(90deg, rgb(14, 165, 234), rgb(11, 209, 209) 51%, rgb(14, 165, 234)) var(--x, 0)/200%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Заголовки */
.content-detail h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    line-height: 1.2;
}

.content-detail h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
}

.content-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.content-detail h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
}

/* Параграфы */
.content-detail p {
    margin: 1rem 0;
    font-size: 1.125rem;
}

/* Цитаты */
.content-detail blockquote {
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Списки */
.content-detail ol, .content-detail ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-detail li {
    margin: 0.5rem 0;
    font-size: 1.125rem;
}

.content-detail ol li {
    list-style-type: decimal;
}

.content-detail ul li {
    list-style-type: disc;
}

/* Ссылки */
.content-detail a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-detail a:hover {
    color: #1d4ed8;
    border-bottom-color: #3b82f6;
}

/* Изображения */
.content-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.content-detail .img-bdrd-16 {
    border-radius: 16px;
}

/* Отступы */
.content-detail .mt-20 { margin-top: 20px; }
.content-detail .mt-40 { margin-top: 40px; }
.content-detail .mt-50 { margin-top: 50px; }
.content-detail .mb-20 { margin-bottom: 20px; }
.content-detail .mb-30 { margin-bottom: 30px; }
.content-detail .mb-40 { margin-bottom: 40px; }
.content-detail .mb-50 { margin-bottom: 50px; }

/* Текст */
.content-detail .text-xl {
    font-size: 1.25rem;
}

.content-detail .text-lg {
    font-size: 1.125rem;
}

.content-detail .text-center {
    text-align: center;
}

/* Цвета */
/*.content-detail .color-gray-500 {*/
/*    color: #6b7280;*/
/*}*/

/*.content-detail .color-gray-700 {*/
/*    color: #374151;*/
/*}*/

/*.content-detail .color-white {*/
/*    color: #fff;*/
/*}*/

/* Сетка */
.content-detail .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.content-detail .col-lg-4,
.content-detail .col-lg-6,
.content-detail .col-lg-8 {
    padding: 0 15px;
    box-sizing: border-box;
}

.content-detail .col-lg-4 { width: 33.333%; }
.content-detail .col-lg-6 { width: 50%; }
.content-detail .col-lg-8 { width: 66.666%; }

/* Блоки */
.content-detail .bg-gray-850 {
    background-color: #1f2937;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.content-detail .box-quote {
    border-left: 4px solid #10b981;
}

.content-detail .box-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-detail .box-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.content-detail .d-inline-block {
    display: inline-block;
}

/* Стили для Quill редактора */
.content-detail .ql-indent-1 {
    padding-left: 3em;
}

.content-detail em {
    font-style: italic;
}

.content-detail strong {
    font-weight: 600;
}

.content-detail u {
    text-decoration: underline;
}

.content-detail s {
    text-decoration: line-through;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-detail {
        padding: 20px 15px;
    }

    .content-detail h1 {
        font-size: 2rem;
    }

    .content-detail h2 {
        font-size: 1.75rem;
    }

    .content-detail h3 {
        font-size: 1.375rem;
    }

    .content-detail .col-lg-4,
    .content-detail .col-lg-6,
    .content-detail .col-lg-8 {
        width: 100%;
        margin-bottom: 1rem;
    }

    .content-detail .row {
        margin: 0;
    }

    .content-detail .bg-gray-850 {
        padding: 1.5rem;
    }
}

/* Анимации */
.content-detail img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-detail img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.3);
}

/* Утилиты */
.border-gray-800 {
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 1.5rem;
}

