.page-title {
    font-size: 1.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}
.work-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.work-item {
    background: #fefefe;
    border: 1px solid #e2e8f0;
    border-radius: 1.2rem;
    padding: 0.8rem 1.2rem;
    transition: 0.1s;
}
.work-item:hover {
    background: #fafcff;
    border-color: #cbd5e1;
}
.work-item__title {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 0.2rem 0;
}
.work-item__link {
    color: #0f172a;
    text-decoration: none;
}
.work-item__link:hover {
    color: #4f46e5;
    text-decoration: underline;
}
.work-item__date {
    font-size: 0.8rem;
    color: #64748b;
}
.btn-load {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
}
.btn-load:hover {
    background: #e2e8f0;
}
.btn-load:active {
    transform: scale(0.98);
}
.no-docs {
    text-align: center;
    color: #94a3b8;
    padding: 2rem 0;
    font-style: italic;
}
@media (max-width: 768px) {
    .page-title {
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    .work-item {
        padding: 0.6rem 0.8rem;
    }
    .work-item__title {
        font-size: 0.95rem;
    }
}