/* Додаткові стилі */

/* Форма пошуку WordPress */
.search-form .search-field:focus {
    border-color: #e8002d !important;
}

/* Коментарі */
.comments-area {
    margin-top: 32px;
    background: white;
    border-radius: 6px;
    padding: 28px 32px;
    border: 1px solid #e0e0e0;
}
.comments-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e8002d;
}
.comment-list { list-style: none; }
.comment {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}
.comment-meta { font-size: 13px; color: #888; margin-bottom: 6px; }
.comment-content { font-size: 14px; line-height: 1.6; }

/* Форма коментарів */
.comment-respond {
    margin-top: 24px;
}
.comment-reply-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #555;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 9px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #e8002d;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.form-submit .submit {
    background: #e8002d;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.form-submit .submit:hover { background: #c40025; }

/* Виджет — місячний архів */
.widget_archive ul,
.widget_categories ul,
.widget_pages ul,
.widget_nav_menu ul {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.widget_archive ul li a,
.widget_categories ul li a,
.widget_pages ul li a,
.widget_nav_menu ul li a {
    font-size: 14px;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
}
.widget_archive ul li a:hover,
.widget_categories ul li a:hover,
.widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover {
    color: #e8002d;
}

/* Sticky posts */
.sticky .news-card-body::before {
    content: 'Закріплено';
    display: inline-block;
    background: #ff9800;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

/* Print */
@media print {
    .site-header, .breaking-bar, .sidebar, .site-footer, .related-posts { display: none; }
    .single-layout { grid-template-columns: 1fr; }
    .post-article { border: none; padding: 0; }
}
