/* ==========================================================================
   КОНТЕЙНЕР СТАТТІ (ПРАВА КОЛОНКА)
   ========================================================================== */
.full-post-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-width: 0; /* Важливо для Flex/Grid, щоб не розпирало вправо */
}

/* Хлібні крихти */
.breadcrumb {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: var(--green, #4CAF50);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Заголовок статті */
.entry-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

/* Мета-дані (дата, категорія) */
.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #777;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* ==========================================================================
   ІНСТРУМЕНТИ АДМІНІСТРАТОРА
   ========================================================================== */
.post-admin-tools {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-end;
}

.edit-link-top {
    display: inline-flex;
    align-items: center;
    background-color: #2c3e50;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.edit-link-top:hover {
    background-color: var(--green, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.edit-link-top .dashicons {
    margin-right: 8px;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   ПОВ'ЯЗАНІ ЗАПИСИ ТА НАВІГАЦІЯ
   ========================================================================== */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f9f9f9;
    font-weight: 600;
}

.post-navigation a {
    color: var(--green);
    text-decoration: none;
    max-width: 45%;
}

.related-posts-box {
    margin-top: 60px;
}

.related-posts-box .missed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

