/**
 * Custom CSS
 *
 * This file is for your custom styles.
 * You can add any CSS rules here to customize the Ghost theme.
 *
 * Note: Changes made directly to this file may be overwritten during theme updates.
 * It's recommended to use the Code Injection feature in Ghost for persistent customizations.
 */

/* Your custom CSS goes below this line */

/* Секция комментариев */
.article-comments {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
}

/* Заголовок комментариев */
.article-comments h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #333;
    font-weight: 600;
}

/* Текст перед формой */
.article-comments p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.2rem;
}

/* Форма входа для Cove */
#cove-login, .cove-login {
    margin-top: 1rem;
    max-width: 400px;
}

.cove-input, input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 12px;
    background: #fff;
    transition: border-color 0.2s;
}

.cove-input:focus, input[type="email"]:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.cove-button, button[type="submit"] {
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.cove-button:hover, button[type="submit"]:hover {
    background: #005099;
}

/* Сообщения об успехе и ошибке */
.signin-success, .signin-error {
    display: block;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.signin-success {
    background: #e6f7ee;
    color: #2e7d32;
}

.signin-error {
    background: #ffebee;
    color: #c62828;
}
