.documents-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.document-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.document-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.document-icon {
    width: 42px;
    height: 42px;
    background-image: url('images/docs.svg');
    background-repeat: no-repeat;
    background-size: auto;
    flex-shrink: 0;
    margin-right: 16px;
}

.document-icon--pdf {
    background-position: 0 0;
}

.document-icon--doc {
    background-position: 0 -42px;
}

.document-icon--txt {
    background-position: 0 -84px;
}

.document-content {
    flex: 1;
    min-width: 0;
}

.document-title {
    margin-bottom: 8px;
}

.document-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    transition: color .3s ease;
}

.document-link:hover {
    color: #ffbe35;
}

.document-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.document-filename {
    color: #999;
    font-size: 12px;
    font-style: italic;
}

.document-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 16px;
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    will-change: transform;
}

.document-download:hover {
    transform: scale(1.1);
}

.document-download svg {
    width: 18px;
    height: 18px;
    fill: #666;
    transition: fill 0.3s ease;
}


@media (max-width: 768px) {
    .document-item {
        padding: 12px;
    }
    
    .document-icon {
        width: 32px;
        height: 32px;
        background-size: 32px auto;
        margin-right: 12px;
    }
    
    .document-link {
        font-size: 14px;
    }
    
    .document-description {
        font-size: 13px;
    }
    
    .document-download {
        width: 36px;
        height: 36px;
        margin-left: 12px;
    }
    
    .document-download svg {
        width: 16px;
        height: 16px;
    }
}
