/* ===========================
   Страницы Flask
=========================== */

.page{
    width:100%;
    padding:40px 0 80px;
}

.page-title{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:35px;
}

.page-subtitle{
    color:#6b7280;
    font-size:18px;
    margin-bottom:40px;
    line-height:170%;
}

/* ===========================
   Карточки
=========================== */

.card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:35px;
    margin-bottom:25px;
    transition:.25s ease;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card h2{
    font-size:28px;
    color:#111827;
    margin-bottom:15px;
}

.card p{
    color:#4b5563;
    line-height:180%;
}

/* ===========================
   Ссылки внутри карточек
=========================== */

.card .btn{
    margin-top:25px;
    display:inline-flex;
}

/* ===========================
   Дата публикации
=========================== */

.date{
    color:#9ca3af;
    font-size:14px;
    margin:18px 0;
}

/* ===========================
   Просмотр статьи
=========================== */

.article{
    overflow:hidden;
}

.article .page-title{
    margin-bottom:15px;
}

.post-image{
    width:100%;
    border-radius:16px;
    margin:35px 0;
}

.article-content{
    white-space:pre-wrap;
    line-height:190%;
    font-size:17px;
    color:#374151;
}

.back-link{
    display:inline-flex;
    align-items:center;
    margin-bottom:30px;
    color:#00c853;
    font-weight:600;
}

.back-link:hover{
    color:#00a844;
}

/* ===========================
   Контакты
=========================== */

.contact-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:30px;
}

.contact-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #ececec;
    padding-bottom:18px;
}

.contact-item a{
    color: #6b7280;
    text-decoration: none;
}
.contact-item:last-child{
    border:none;
    padding-bottom:0;
}

.contact-item strong{
    color:#111827;
}

.contact-item span{
    color:#6b7280;
}

/* ===========================
   Админ-панель
=========================== */

.admin-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.admin-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.admin-buttons form{
    display:flex;
    align-items:center;
    gap:10px;
}

.admin-buttons input{
    width:180px;
}

/* ===========================
   Формы
=========================== */

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#111827;
}

input,
textarea,
select{

    width:100%;

    padding:15px 18px;

    border:1px solid #d1d5db;

    border-radius:12px;

    font-size:15px;

    font-family:inherit;

    background:#fff;

    transition:.25s;
}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:#00c853;

    box-shadow:0 0 0 4px rgba(0,200,83,.12);

}

textarea{

    min-height:220px;

    resize:vertical;

}

/* ===========================
   Кнопки
=========================== */

.btn{

    background: #00c853;
    padding: 9px 17px;
    border-radius: 8px;
    color:#fff;
    cursor:pointer;
    transition: all 500ms ease;
}

.btn:hover{

    background:#00ae47;

}


/* ===========================
   Уведомления
=========================== */

.success{

    padding:18px 22px;

    border-radius:14px;

    background:#e8f8ed;

    color:#14833b;

    margin-bottom:25px;

    border:1px solid #b8e7c8;

}

.error{

    padding:18px 22px;

    border-radius:14px;

    background:#fdeaea;

    color:#d93025;

    margin-bottom:25px;

    border:1px solid #f6b9b9;

}

/* ===========================
   Пустые страницы
=========================== */

.empty{

    text-align:center;

    padding:70px 20px;

    color:#6b7280;

}

/* ===========================
   Таблица публикаций
=========================== */

.admin-item strong{

    font-size:18px;

    color:#111827;

}

.admin-item .date{

    margin-top:8px;

}

/* ===========================
   Адаптивность
=========================== */

@media (max-width:1100px){

    .admin-item{

        flex-direction:column;

        align-items:flex-start;

    }

    .admin-buttons{

        width:100%;

    }

    .admin-buttons form{

        width:100%;

    }

    .admin-buttons input{

        width:100%;

    }

}

@media (max-width:768px){

    .page{

        padding:30px 0 60px;

    }

    .page-title{

        font-size:32px;

    }

    .card{

        padding:25px;

    }

    .contact-item{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

    .btn{

        width:100%;

    }

}

@media (max-width:480px){

    .page-title{

        font-size:28px;

    }

    .card{

        padding:20px;

    }

    .article-content{

        font-size:16px;

    }

}
