/* ============================================================ */
/* СТРАНИЦА ДЗЕН — СТИЛИ */
/* ============================================================ */

h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

h1 .highlight {
    color: #f97316;
}

.subhead {
    font-size: 1.05rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    border-left: 4px solid #f97316;
    padding-left: 20px;
    line-height: 1.6;
}

/* ============================================================ */
/* СЕТКА КАРТОЧЕК */
/* ============================================================ */
.dzen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ============================================================ */
/* КАРТОЧКА СТАТЬИ */
/* ============================================================ */
.dzen-card {
    display: block;
    background: #151515;
    border-radius: 16px;
    padding: 24px 24px 20px;
    border: 1px solid #2a2a2a;
    transition: border-color 0.2s, transform 0.15s, background 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.dzen-card:hover {
    border-color: #f97316;
    transform: translateY(-3px);
    background: #1a1a1a;
}

.dzen-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dzen-date {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dzen-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.2s;
}

.dzen-card:hover .dzen-title {
    color: #f97316;
}

.dzen-preview {
    color: #b0b0b0;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dzen-card-footer {
    border-top: 1px solid #2a2a2a;
    padding-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.dzen-read {
    font-size: 0.85rem;
    font-weight: 500;
    color: #f97316;
    transition: color 0.2s;
}

.dzen-card:hover .dzen-read {
    color: #e85d0e;
}

/* ============================================================ */
/* АДАПТИВ ДЛЯ МОБИЛЬНЫХ */
/* ============================================================ */
@media (max-width: 768px) {
    .dzen-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    .dzen-card {
        padding: 18px 16px 16px;
    }

    .dzen-title {
        font-size: 1rem;
    }

    .dzen-preview {
        font-size: 0.85rem;
        -webkit-line-clamp: 4;
    }
}

/* ============================================================ */
/* ПЛАНШЕТЫ */
/* ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .dzen-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .dzen-card {
        padding: 20px 18px 16px;
    }

    .dzen-title {
        font-size: 1.05rem;
    }
}