/* ========================================================
   Стили для статей (блога)
   ======================================================== */
.blog-content-wrap {
  padding-top: 0px;
}
.items-row, .blog-items {
    max-width: 900px;
    margin: 0 auto;
}
.item {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 35px -8px rgba(0, 10, 30, 0.1), 0 5px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 40px;
    padding: 35px 40px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(2px);
}
.entry-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #e9eef3;
    padding-bottom: 20px;
}
.entry-header h2 {
    margin: 0 0 12px 0;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.entry-header h2 a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.entry-header h2 a:hover {
    color: #3b82f6;
    background: none;
    -webkit-text-fill-color: #2563eb;
}
.article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    color: #475569;
}
.article-info dd {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-info i.fa {
    font-size: 1.1rem;
    color: #2563eb;
    width: 18px;
    text-align: center;
}
.article-info .category-name a {
    background: #eef2ff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
    color: #1e40af;
    text-decoration: none;
    transition: background 0.2s;
}
.article-info .category-name a:hover {
    background: #dbeafe;
}
.system-unpublished p {
    margin: 0 0 20px 0;
    font-size: 1.08rem;
    color: #1e293b;
}
.system-unpublished p[style*="text-align: center"] {
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    padding: 30px 20px;
    border-radius: 36px;
    margin: 20px 0 30px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.02), 0 8px 18px -6px rgba(0,35,70,0.08);
}
.system-unpublished img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 25px 0 10px;
    display: block;
}
ul {
    padding-left: 25px;
    margin: 20px 0;
}
ul li a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.contentright {
    background: #f1f5f9;
    border-radius: 28px;
    padding: 25px 30px;
    margin: 30px 0 15px;
    border-left: 6px solid #2563eb;
    box-shadow: 0 10px 20px -10px rgba(0,55,120,0.15);
}
.contentright ul {
    background: white;
    border-radius: 20px;
    padding: 20px 25px 20px 40px;
    list-style-type: disc;
    box-shadow: inset 0 1px 4px #cdddec;
}
.contentright ul li {
    margin-bottom: 12px;
}
p[style*="text-align: right"] {
    margin-top: 30px;
    font-size: 0.9rem;
    border-top: 1px dashed #cbd5e1;
    padding-top: 18px;
    text-align: right;
}
p[style*="text-align: right"] a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    background: #eef2ff;
    padding: 4px 12px;
    border-radius: 40px;
    transition: background 0.2s;
    margin-left: 8px;
}
@media (max-width: 700px) {
    .item {
        padding: 25px 20px;
    }
    .entry-header h2 {
        font-size: 1.8rem;
    }
    .article-info {
        gap: 12px 18px;
    }
    .contentright {
        padding: 18px 18px;
    }
    .contentright ul {
        padding: 15px 15px 15px 30px;
    }
}
figure {
    margin: 0;
    padding: 0;
    width: 100%;
}
figure img {
    width: 100%;
    height: auto;
    display: block;
}
