.custom-files-block {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.custom-files-block .file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.custom-files-block .file-item:hover {
    border-color: #007cba;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-files-block .file-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.custom-files-block .file-content {
    flex-grow: 1;
}

.custom-files-block .file-link {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3338;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.custom-files-block .file-link:hover {
    color: #007cba;
}

.custom-files-block .file-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.custom-files-block .file-size {
    font-weight: 500;
}

.custom-files-block .file-date {
    font-style: italic;
}